services.exe: Move a trace to a more appropriate place.
This commit is contained in:
parent
3c79c2e88c
commit
b0f34a600f
|
@ -714,8 +714,6 @@ DWORD service_start(struct service_entry *service, DWORD service_argc, LPCWSTR *
|
||||||
err = ERROR_SERVICE_REQUEST_TIMEOUT;
|
err = ERROR_SERVICE_REQUEST_TIMEOUT;
|
||||||
}
|
}
|
||||||
|
|
||||||
WINE_TRACE("returning %d\n", err);
|
|
||||||
|
|
||||||
if (err == ERROR_SUCCESS)
|
if (err == ERROR_SUCCESS)
|
||||||
err = service_wait_for_startup(service, process_handle);
|
err = service_wait_for_startup(service, process_handle);
|
||||||
|
|
||||||
|
@ -725,6 +723,8 @@ DWORD service_start(struct service_entry *service, DWORD service_argc, LPCWSTR *
|
||||||
ReleaseMutex(service->control_mutex);
|
ReleaseMutex(service->control_mutex);
|
||||||
scmdatabase_unlock_startup(service->db);
|
scmdatabase_unlock_startup(service->db);
|
||||||
|
|
||||||
|
WINE_TRACE("returning %d\n", err);
|
||||||
|
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue