Index: src/Thread.h |
=================================================================== |
--- a/src/Thread.h |
+++ b/src/Thread.h |
@@ -21,17 +21,17 @@ |
#ifdef WIN32 |
#include <windows.h> |
#else |
#include <pthread.h> |
#endif |
namespace AdblockPlus |
{ |
- void Sleep(const int millis); |
+ void Sleep(int millis); |
class Mutex |
{ |
public: |
#ifdef WIN32 |
CRITICAL_SECTION nativeMutex; |
#else |
pthread_mutex_t nativeMutex; |