mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[ADVAPI32] Fix 2 TRACE() format copypastas.
This commit is contained in:
parent
65e29b4b1f
commit
8c312fe7e1
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue