Fix "unused parameter" warning
This commit is contained in:
parent
1ddb214cc3
commit
4101fd8241
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user