Added reference to unused variable to avoid GCC 4.6 warning.

This commit is contained in:
Oliver Schmidt
2013-05-06 23:31:00 +02:00
parent 55667b94fb
commit 2e7fdb23ee
2 changed files with 6 additions and 1 deletions

View File

@@ -195,6 +195,11 @@ void AddSubSearchPathFromWinBin (SearchPath* P, const char* SubDir)
/* Add the search path */
AddSearchPath (P, Dir);
#else
(void) P;
(void) SubDir;
#endif
}