* cygserver_transport_pipes.cc (transport_layer_pipes::accept):
Remove trailing \n from debug_printf.
This commit is contained in:
parent
6cae97d5dc
commit
18be975d30
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue