aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2007-01-23 03:31:33 +0000
committerBruce Momjian <bruce@momjian.us>2007-01-23 03:31:33 +0000
commit8502b68513923c43293bce5093eb44e285be2626 (patch)
treec8ce1dd42ee4df9b996e48265092706945b14db9 /src
parent882b9948d706af983e101166ec73bb54a7782957 (diff)
downloadpostgresql-8502b68513923c43293bce5093eb44e285be2626.tar.gz
postgresql-8502b68513923c43293bce5093eb44e285be2626.zip
Remove newline from error message because URL is gone.
Diffstat (limited to 'src')
-rw-r--r--src/port/exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/exec.c b/src/port/exec.c
index 28be9d78786..0caf0287919 100644
--- a/src/port/exec.c
+++ b/src/port/exec.c
@@ -9,7 +9,7 @@
*
*
* 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)
log_error(_("child process was terminated by signal %d"),
WTERMSIG(exitstatus));
#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));
#endif
else