From 228fbf096eb3245d26db9057a1dc85d8cccda28e Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 13 Apr 2002 00:56:12 +0000 Subject: [PATCH] More cleanups. --- platform/win32.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/platform/win32.c b/platform/win32.c index 96201256..458d8b22 100644 --- a/platform/win32.c +++ b/platform/win32.c @@ -3,13 +3,9 @@ * * Please see the file LICENSE in the source's root directory. * - * This file written by Ryan C. Gordon. + * This file written by Ryan C. Gordon, and made sane by Gregory S. Read. */ -#if (defined __STRICT_ANSI__) -#define __PHYSFS_DOING_STRICT_ANSI__ -#endif - #include #include #include @@ -62,6 +58,9 @@ char **__PHYSFS_platformDetectAvailableCDs(void) { if (GetDriveType(drive_str) == DRIVE_CDROM) { + + /* !!! FIXME: Make sure there's really a disc in the drive? */ + char **tmp = realloc(retval, sizeof (char *) * cd_count + 1); if (tmp) { @@ -146,7 +145,7 @@ char *__PHYSFS_platformGetUserDir(void) { char *userdir = NULL; - if(runningNT) + if (runningNT) { userdir = ProfileDirectory; } @@ -441,7 +440,7 @@ int __PHYSFS_platformMkDir(const char *path) * * Return zero if there was a catastrophic failure and non-zero otherwise. */ -static int doNTInit() +static int doNTInit(void) { DWORD pathsize = 0; char TempProfileDirectory[1]; @@ -530,7 +529,7 @@ int __PHYSFS_platformInit(void) * * Return zero if there was a catastrophic failure and non-zero otherwise. */ -static int doNTDeinit() +static int doNTDeinit(void) { if(CloseHandle(AccessTokenHandle) != S_OK) {