Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Scott <conrad.scott@dsl.pipex.com>2002-09-30 22:31:56 +0400
committerConrad Scott <conrad.scott@dsl.pipex.com>2002-09-30 22:31:56 +0400
commit18be975d30156bf2d0d8d19534826eea0fffd943 (patch)
treebf31250eb0ccc4662153194dbfcfd3051fd979e7 /winsup/cygserver
parent6cae97d5dc6d2c8e5cb36826c22cf547c1ed6714 (diff)
* cygserver_transport_pipes.cc (transport_layer_pipes::accept):
Remove trailing \n from debug_printf.
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;