summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devintrf.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-06-08 07:28:13 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-06-08 07:28:13 +0000
commit31d3633838943320f8ae7b4076ec6c20ccfa7a82 (patch)
tree8d32df9e37ff828d2cf5e72c67d8b387556a7fdc /src/emu/devintrf.c
parentef0a31ca13fd0598fd9d694d5bc0bee0a0f23f3b (diff)
Cleanups and version bump.mame0132
Diffstat (limited to 'src/emu/devintrf.c')
-rw-r--r--src/emu/devintrf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/devintrf.c b/src/emu/devintrf.c
index ac86a2c74e7..c04d5ee71f9 100644
--- a/src/emu/devintrf.c
+++ b/src/emu/devintrf.c
@@ -247,7 +247,7 @@ const char *device_inherit_tag(astring *dest, const char *sourcetag, const char
/*-------------------------------------------------
- device_get_contract - find a given contract
+ device_get_contract - find a given contract
on a device
-------------------------------------------------*/
@@ -258,7 +258,7 @@ const device_contract *device_get_contract(const device_config *device, const ch
/* if no contracts, obviously we don't have it */
if (contract == NULL)
return NULL;
-
+
/* scan forward through the array looking for a match */
for ( ; contract->name != NULL; contract++)
if (strcmp(name, contract->name) == 0)