Commit d4947333 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

services: Issue a fixme when a service fails to start.

parent 0affcc3a
......@@ -295,7 +295,9 @@ static void scmdatabase_autostart_services(struct scmdatabase *db)
argv[0] = service->name;
argv[1] = NULL;
err = service_start(service, 1, argv);
/* FIXME: do something if the service failed to start */
if (err != ERROR_SUCCESS)
WINE_FIXME("Auto-start service %s failed to start: %d\n",
wine_dbgstr_w(service->name), err);
release_service(service);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment