remove unused parameter from DPRINT

svn path=/trunk/; revision=36133
This commit is contained in:
Christoph von Wittich 2008-09-11 09:30:51 +00:00
parent 1eff85acb5
commit 926d40d3ab

View file

@ -489,8 +489,7 @@ DWORD RCloseServiceHandle(
/* if pcbBytesNeeded returned a value then there are services running that are dependent on this service*/ /* if pcbBytesNeeded returned a value then there are services running that are dependent on this service*/
if (pcbBytesNeeded) if (pcbBytesNeeded)
{ {
DPRINT1("Deletion failed due to running dependencies.\n", DPRINT1("Deletion failed due to running dependencies.\n");
lpService->lpServiceName);
RegCloseKey(hServicesKey); RegCloseKey(hServicesKey);
return ERROR_SUCCESS; return ERROR_SUCCESS;
} }