mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 06:58:10 +00:00
Fix a check.
svn path=/trunk/; revision=58857
This commit is contained in:
parent
0950be976a
commit
634525fac4
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ wWinMain(HINSTANCE hInstance,
|
|||
|
||||
/* Create the auto-start complete event */
|
||||
hScmAutoStartCompleteEvent = CreateEventW(NULL, TRUE, FALSE, SCM_AUTOSTARTCOMPLETE_EVENT);
|
||||
if (hScmAutoStartCompleteEvent = NULL)
|
||||
if (hScmAutoStartCompleteEvent == NULL)
|
||||
{
|
||||
DPRINT1("SERVICES: Failed to create the auto-start complete event\n");
|
||||
goto done;
|
||||
|
|
Loading…
Reference in a new issue