summaryrefslogtreecommitdiff
path: root/protocols/Omegle/src/stdafx.h
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2015-10-20 10:13:30 +0000
committerRobert Pösel <robyer@seznam.cz>2015-10-20 10:13:30 +0000
commitbdbdf8d3391d2da3df0d4eeabac41fa73aa821fa (patch)
tree366121a22bc6eef039eacb0aafff85c03e4dd605 /protocols/Omegle/src/stdafx.h
parentd49489f3467a02953b77cd5869bec5c061b63aa1 (diff)
Omegle: Format sources
git-svn-id: http://svn.miranda-ng.org/main/trunk@15579 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Omegle/src/stdafx.h')
-rw-r--r--protocols/Omegle/src/stdafx.h4
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()