mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-13 19:56:00 +01:00
...
This commit is contained in:
parent
94b0d82029
commit
c7f626083d
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ HANDLE open_named_pipe(LPWSTR pipename) {
|
|||
fprintf(stderr, "Failed to open pipe. GetLastError()=%d\n", GetLastError()); fflush(stderr); return ans;
|
||||
}
|
||||
if (!WaitNamedPipeW(pipename, 20000)) {
|
||||
fprintf(stderr, "Failed to open pipe. 20 second wait timed out.\n", GetLastError()); fflush(stderr); return ans;
|
||||
fprintf(stderr, "Failed to open pipe. 20 second wait timed out. GetLastError()=%d\n", GetLastError()); fflush(stderr); return ans;
|
||||
}
|
||||
}
|
||||
return ans;
|
||||
|
|
|
|||
Loading…
Reference in a new issue