Index: src/Thread.cpp |
=================================================================== |
--- a/src/Thread.cpp |
+++ b/src/Thread.cpp |
@@ -18,17 +18,17 @@ |
#ifndef WIN32 |
#include <unistd.h> |
#endif |
#include "Thread.h" |
using namespace AdblockPlus; |
-void AdblockPlus::Sleep(const int millis) |
+void AdblockPlus::Sleep(int millis) |
{ |
#ifdef WIN32 |
::Sleep(millis); |
#else |
usleep(millis * 1000); |
#endif |
} |