services: Mention the unkown type in the error message.

This commit is contained in:
André Hentschel 2010-11-01 21:57:23 +01:00 committed by Alexandre Julliard
parent 45e6101c0c
commit 7abdbe62d1
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ BOOL validate_service_config(struct service_entry *entry)
}
break;
default:
WINE_ERR("Service %s has an unknown service type\n", wine_dbgstr_w(entry->name));
WINE_ERR("Service %s has an unknown service type (0x%x)\n", wine_dbgstr_w(entry->name), entry->config.dwServiceType);
return FALSE;
}