summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-02-14 16:59:22 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-02-14 16:59:22 +0000
commit6b663f66a75dc2a832262b55d1e450b89d1da464 (patch)
tree03a43c78c4e6a5e36df68dfe7385326a3601189f /src/osd
parent535a84c908f8bdb6475d4ec548639701fd01dd11 (diff)
Cleanups and version bump.mame0136u3
Diffstat (limited to 'src/osd')
-rw-r--r--src/osd/sdl/sdldir.c4
-rw-r--r--src/osd/sdl/sdlos_unix.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/osd/sdl/sdldir.c b/src/osd/sdl/sdldir.c
index fa2e8bb1b53..d70f81eb07c 100644
--- a/src/osd/sdl/sdldir.c
+++ b/src/osd/sdl/sdldir.c
@@ -71,10 +71,10 @@ static char *build_full_path(const char *path, const char *file)
char *p = ret;
strcpy(p, path);
- p += strlen(path);
+ p += strlen(path);
*p++ = PATHSEPCH;
strcpy(p, file);
- return ret;
+ return ret;
}
diff --git a/src/osd/sdl/sdlos_unix.c b/src/osd/sdl/sdlos_unix.c
index a54524a1566..b24bce929ae 100644
--- a/src/osd/sdl/sdlos_unix.c
+++ b/src/osd/sdl/sdlos_unix.c
@@ -246,7 +246,7 @@ osd_directory_entry *osd_stat(const char *path)
struct stat64 st;
#endif
- #if defined(SDLMAME_NO64BITIO) || defined(SDLMAME_BSD)
+ #if defined(SDLMAME_NO64BITIO) || defined(SDLMAME_BSD)
err = stat(path, &st);
#else
err = stat64(path, &st);