Fix "unused parameter" warning

This commit is contained in:
Jason Perkins 2015-02-09 12:44:15 -05:00
parent 1ddb214cc3
commit 4101fd8241

View File

@ -11,7 +11,7 @@ int do_chdir(lua_State* L, const char* path)
{ {
int z; int z;
(L); /* warning: unused parameter */ (void)(L); /* warning: unused parameter */
#if PLATFORM_WINDOWS #if PLATFORM_WINDOWS
z = SetCurrentDirectory(path); z = SetCurrentDirectory(path);