]> sourceware.org Git - newlib-cygwin.git/commitdiff
* cygserver_transport_pipes.cc (transport_layer_pipes::accept):
authorConrad Scott <conrad.scott@dsl.pipex.com>
Mon, 30 Sep 2002 18:31:56 +0000 (18:31 +0000)
committerConrad Scott <conrad.scott@dsl.pipex.com>
Mon, 30 Sep 2002 18:31:56 +0000 (18:31 +0000)
Remove trailing \n from debug_printf.

winsup/cygserver/transport_pipes.cc
winsup/cygwin/ChangeLog
winsup/cygwin/cygserver_transport_pipes.cc

index f318a7592f173043f2490b926be70443f78e4584..495d804b0530fa291ffab0149f19c6c2aadf448e 100644 (file)
@@ -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;
index f4598a7e52687f318f9856912e9cb648674d3611..b804b8fce57600c25726411630e30ef197eb3780 100644 (file)
@@ -1,3 +1,8 @@
+2002-09-30  Conrad Scott  <conrad.scott@dsl.pipex.com>
+
+       * cygserver_transport_pipes.cc (transport_layer_pipes::accept):
+       Remove trailing \n from debug_printf.
+
 2002-09-30  Christopher Faylor  <cgf@redhat.com>
 
        * thread.cc (pthread_mutex::initMutex): Remove \n from api_fatal.
index f318a7592f173043f2490b926be70443f78e4584..495d804b0530fa291ffab0149f19c6c2aadf448e 100755 (executable)
@@ -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;
This page took 0.072257 seconds and 5 git commands to generate.