Add debug print

svn path=/trunk/; revision=23584
This commit is contained in:
Ged Murphy 2006-08-14 21:35:51 +00:00
parent 361a28608d
commit 3eb1c6a341

View file

@ -1792,7 +1792,10 @@ ScmrStartServiceW(handle_t BindingHandle,
/* Start the service */
Status = ScmStartService(lpService);
if (!NT_SUCCESS(Status))
{
DPRINT("ScmStartService failed!\n");
return RtlNtStatusToDosError(Status);
}
return dwError;
}