[ADVAPI32] Fix 2 TRACE() format copypastas.

This commit is contained in:
Serge Gautherie 2018-04-23 14:33:29 +02:00 committed by Thomas Faber
parent 65e29b4b1f
commit 8c312fe7e1

View file

@ -674,7 +674,7 @@ RegisterServiceCtrlHandlerA(LPCSTR lpServiceName,
UNICODE_STRING ServiceNameU;
SERVICE_STATUS_HANDLE hServiceStatus;
TRACE("RegisterServiceCtrlHandlerA(%s %p %p)\n",
TRACE("RegisterServiceCtrlHandlerA(%s %p)\n",
debugstr_a(lpServiceName), lpHandlerProc);
RtlInitAnsiString(&ServiceNameA, lpServiceName);
@ -704,7 +704,7 @@ RegisterServiceCtrlHandlerW(LPCWSTR lpServiceName,
{
PACTIVE_SERVICE Service;
TRACE("RegisterServiceCtrlHandlerW(%s %p %p)\n",
TRACE("RegisterServiceCtrlHandlerW(%s %p)\n",
debugstr_w(lpServiceName), lpHandlerProc);
Service = ScLookupServiceByServiceName(lpServiceName);