Author: sginsberg Date: Fri Aug 1 09:18:52 2008 New Revision: 35006
URL: http://svn.reactos.org/svn/reactos?rev=35006&view=rev Log: - Fix my broken indentation
Modified: trunk/reactos/dll/win32/kernel32/synch/event.c
Modified: trunk/reactos/dll/win32/kernel32/synch/event.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/kernel32/synch/ev... ============================================================================== --- trunk/reactos/dll/win32/kernel32/synch/event.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/kernel32/synch/event.c [iso-8859-1] Fri Aug 1 09:18:52 2008 @@ -80,7 +80,7 @@ return NULL; }
- /* Set initial state and event type */ + /* Set initial state and event type */ InitialState = (dwFlags & CREATE_EVENT_INITIAL_SET) ? TRUE : FALSE; EventType = (dwFlags & CREATE_EVENT_MANUAL_RESET) ? NotificationEvent : SynchronizationEvent;
@@ -130,11 +130,11 @@ { DWORD dwFlags = 0;
- /* Set new flags */ + /* Set new flags */ if (bManualReset) dwFlags |= CREATE_EVENT_MANUAL_RESET; if (bInitialState) dwFlags |= CREATE_EVENT_INITIAL_SET;
- /* Call the newer API */ + /* Call the newer API */ return CreateEventExA(lpEventAttributes, lpName, dwFlags,