mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 16:30:26 +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 */
|
/* Create the auto-start complete event */
|
||||||
hScmAutoStartCompleteEvent = CreateEventW(NULL, TRUE, FALSE, SCM_AUTOSTARTCOMPLETE_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");
|
DPRINT1("SERVICES: Failed to create the auto-start complete event\n");
|
||||||
goto done;
|
goto done;
|
||||||
|
|
Loading…
Reference in a new issue