diff options
| author | 2008-03-19 08:52:53 +0000 | |
|---|---|---|
| committer | 2008-03-19 08:52:53 +0000 | |
| commit | 4a5001927c4699b7ac0c92c42a5606f20b57cd38 (patch) | |
| tree | 4d251b1f31edb278257ec3b518682c1fbbee7e04 /src/emu/devintrf.c | |
| parent | 78c12f1b828443f12281ef185885355aeb907e89 (diff) | |
Cleanups and version bump.mame0123u6
Diffstat (limited to 'src/emu/devintrf.c')
| -rw-r--r-- | src/emu/devintrf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/devintrf.c b/src/emu/devintrf.c index f5ef99a709c..359190fef8d 100644 --- a/src/emu/devintrf.c +++ b/src/emu/devintrf.c @@ -460,7 +460,7 @@ void device_list_start(running_machine *machine) for (device = (device_config *)machine->config->devicelist; device != NULL; device = device->next) { UINT32 tokenlen; - + assert(device->token == NULL); assert(device->type != NULL); assert(device->start != NULL); @@ -501,7 +501,7 @@ static void device_list_stop(running_machine *machine) /* if we have a stop function, call it */ if (device->stop != NULL) (*device->stop)(device); - + /* free allocated memory for the token */ if (device->token != NULL) free(device->token); |
