mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +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);
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue