Fix pesky compiler warning on unused variable in linux.

This commit is contained in:
Eric Scharff 2008-01-28 16:22:16 -07:00
parent 8a8a123e02
commit e5f95ae89d

View File

@ -135,7 +135,8 @@ pathOfExecutable(System* s, const char** retBuf, unsigned* size)
abort();
}
#else
*size = 0;
if (s)
*size = 0;
*retBuf = NULL;
#endif
}