summaryrefslogtreecommitdiffstats
path: root/winsup/cygserver
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygserver')
-rw-r--r--winsup/cygserver/transport_pipes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygserver/transport_pipes.cc b/winsup/cygserver/transport_pipes.cc
index f318a7592..495d804b0 100644
--- a/winsup/cygserver/transport_pipes.cc
+++ b/winsup/cygserver/transport_pipes.cc
@@ -170,7 +170,7 @@ transport_layer_pipes::accept (bool *const recoverable)
if (!ConnectNamedPipe (accept_pipe, NULL)
&& GetLastError () != ERROR_PIPE_CONNECTED)
{
- debug_printf ("error connecting to pipe (%lu)\n.", GetLastError ());
+ debug_printf ("error connecting to pipe (%lu)", GetLastError ());
(void) CloseHandle (accept_pipe);
*recoverable = true; // FIXME: case analysis?
return NULL;