services.exe: Move a trace to a more appropriate place.

This commit is contained in:
Paul Vriens 2008-05-06 08:54:21 +02:00 committed by Alexandre Julliard
parent 3c79c2e88c
commit b0f34a600f
1 changed files with 2 additions and 2 deletions

View File

@ -714,8 +714,6 @@ DWORD service_start(struct service_entry *service, DWORD service_argc, LPCWSTR *
err = ERROR_SERVICE_REQUEST_TIMEOUT;
}
WINE_TRACE("returning %d\n", err);
if (err == ERROR_SUCCESS)
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);
scmdatabase_unlock_startup(service->db);
WINE_TRACE("returning %d\n", err);
return err;
}