From 40de8446500a4a356e3c71837666b2a68ba478f9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 15 Oct 2020 20:32:00 +0530 Subject: [PATCH] ... --- src/calibre/utils/windows/winutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/utils/windows/winutil.cpp b/src/calibre/utils/windows/winutil.cpp index 59a457f38a..8eded19e0e 100644 --- a/src/calibre/utils/windows/winutil.cpp +++ b/src/calibre/utils/windows/winutil.cpp @@ -711,7 +711,7 @@ connect_named_pipe(PyObject *self, PyObject *args) { if (!PyArg_ParseTuple(args, "O&", convert_handle, &handle)) return NULL; BOOL ok; Py_BEGIN_ALLOW_THREADS; - ok = ConnectNamedPipe(handle, NULL) + ok = ConnectNamedPipe(handle, NULL); Py_END_ALLOW_THREADS; if (!ok) return set_error_from_handle(args); Py_RETURN_NONE;