diff options
Diffstat (limited to 'test/StormTest.cpp')
-rwxr-xr-x | test/StormTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/StormTest.cpp b/test/StormTest.cpp index 21f395f..596ebae 100755 --- a/test/StormTest.cpp +++ b/test/StormTest.cpp @@ -591,7 +591,7 @@ static HANDLE InitDirectorySearch(LPCTSTR szDirectory) #if defined(STORMLIB_LINUX) || defined(STORMLIB_MAC)
- // Keep compilers happy
+ // Open the directory
return (HANDLE)opendir(szDirectory);
#endif
@@ -1296,8 +1296,8 @@ static void WINAPI AddFileCallback(void * pvUserData, DWORD dwBytesWritten, DWOR {
TLogHelper * pLogger = (TLogHelper *)pvUserData;
- // Keep compiler happy
- bFinalCall = bFinalCall;
+ // Keep compilers happy
+ STORMLIB_UNUSED(bFinalCall);
pLogger->PrintProgress("Adding file (%s) (%u of %u) (%u of %u) ...", pLogger->UserString,
pLogger->UserCount,
|