From d95572767e196d92d8bcb609d0da593888d51709 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 1 Jun 1997 04:59:25 +0000 Subject: [PATCH] Added \n to error message. --- src/interfaces/libpq/fe-exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index 357ef3b832..d70ff1a79f 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.30 1997/06/01 03:18:32 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.31 1997/06/01 04:59:25 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -332,7 +332,7 @@ makePGresult(PGconn* conn, char* pname) backend dumps core */ sprintf(conn->errorMessage, "FATAL: unrecognized data from the backend. " - "It probably dumped core."); + "It probably dumped core.\n"); fprintf(stderr, conn->errorMessage); result->resultStatus = PGRES_FATAL_ERROR; return result; -- 2.11.0