Commit 8502b685 authored by Bruce Momjian's avatar Bruce Momjian

Remove newline from error message because URL is gone.

parent 882b9948
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/port/exec.c,v 1.47 2007/01/23 03:28:49 momjian Exp $ * $PostgreSQL: pgsql/src/port/exec.c,v 1.48 2007/01/23 03:31:33 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -586,7 +586,7 @@ pclose_check(FILE *stream) ...@@ -586,7 +586,7 @@ pclose_check(FILE *stream)
log_error(_("child process was terminated by signal %d"), log_error(_("child process was terminated by signal %d"),
WTERMSIG(exitstatus)); WTERMSIG(exitstatus));
#else #else
log_error(_("child process was terminated by exception %X\nSee /include/ntstatus.h for a description\nof the hex value."), log_error(_("child process was terminated by exception %X\nSee /include/ntstatus.h for a description of the hex value."),
WTERMSIG(exitstatus)); WTERMSIG(exitstatus));
#endif #endif
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment