From 12945c3c1ed3af91519ccf7e6d313e95ab3b6ce3 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 23 Jan 2007 03:31:33 +0000 Subject: [PATCH] Remove newline from error message because URL is gone. --- src/port/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/port/exec.c b/src/port/exec.c index afb8ade338..2839a65099 100644 --- a/src/port/exec.c +++ b/src/port/exec.c @@ -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 -- 2.39.5