* cygserver_transport_pipes.cc (transport_layer_pipes::accept):

Remove trailing \n from debug_printf.
This commit is contained in:
Conrad Scott 2002-09-30 18:31:56 +00:00
parent 6cae97d5dc
commit 18be975d30
3 changed files with 7 additions and 2 deletions

View 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;

View 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.

View 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;