mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 00:20:34 +00:00
[advapi32] Print the used name when failing to open a control pipe
svn path=/trunk/; revision=44544
This commit is contained in:
parent
c7e5f8e26f
commit
c0d4619777
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ ScConnectControlPipe(HANDLE *hPipe)
|
||||||
NULL);
|
NULL);
|
||||||
if (*hPipe == INVALID_HANDLE_VALUE)
|
if (*hPipe == INVALID_HANDLE_VALUE)
|
||||||
{
|
{
|
||||||
ERR("CreateFileW() failed (Error %lu)\n", GetLastError());
|
ERR("CreateFileW() failed for pipe %S (Error %lu)\n", NtControlPipeName, GetLastError());
|
||||||
return ERROR_FAILED_SERVICE_CONTROLLER_CONNECT;
|
return ERROR_FAILED_SERVICE_CONTROLLER_CONNECT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue