diff options
Diffstat (limited to 'protocols/Omegle/src/stdafx.h')
-rw-r--r-- | protocols/Omegle/src/stdafx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Omegle/src/stdafx.h b/protocols/Omegle/src/stdafx.h index 69ea6c6e9c..96315bdf40 100644 --- a/protocols/Omegle/src/stdafx.h +++ b/protocols/Omegle/src/stdafx.h @@ -84,11 +84,11 @@ class ScopedLock public:
ScopedLock(HANDLE h) : handle_(h)
{
- WaitForSingleObject(handle_,INFINITE);
+ WaitForSingleObject(handle_, INFINITE);
}
~ScopedLock()
{
- if(handle_)
+ if (handle_)
ReleaseMutex(handle_);
}
void Unlock()
|