From 4446cfa61369ae7f920026498c695d054a87c341 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 31 Mar 2011 11:24:46 -0400 Subject: [PATCH] Fixed compiler warning on gcc-4.6. --- src/platform_windows.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/platform_windows.c b/src/platform_windows.c index e01f7c8..a2295e4 100644 --- a/src/platform_windows.c +++ b/src/platform_windows.c @@ -457,6 +457,7 @@ static int determineUserDir(void) */ rc = pGetUserProfileDirectoryW(accessToken, &dummy, &psize); assert(!rc); /* !!! FIXME: handle this gracefully. */ + (void) rc; /* Allocate memory for the profile directory */ wstr = (LPWSTR) __PHYSFS_smallAlloc(psize * sizeof (WCHAR));