diff options
author | Peter Eisentraut | 2022-11-13 20:09:09 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-11-13 20:09:09 +0000 |
commit | 45d5ecab49f6c0df607d3ca2ce1995229f416d1a (patch) | |
tree | 84dbef943c230f0982cb6fcba638c26d0704e46e | |
parent | 062e133f6d579f50e6e90642defca725d47add1d (diff) |
libpq: Add missing newlines to error messages
-rw-r--r-- | src/interfaces/libpq/fe-protocol3.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaces/libpq/fe-protocol3.c b/src/interfaces/libpq/fe-protocol3.c index f001137b76..f5664e0f83 100644 --- a/src/interfaces/libpq/fe-protocol3.c +++ b/src/interfaces/libpq/fe-protocol3.c @@ -202,7 +202,7 @@ pqParseInput3(PGconn *conn) if (!conn->result) { appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("out of memory")); + libpq_gettext("out of memory\n")); pqSaveErrorResult(conn); } } @@ -227,7 +227,7 @@ pqParseInput3(PGconn *conn) if (!conn->result) { appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("out of memory")); + libpq_gettext("out of memory\n")); pqSaveErrorResult(conn); } else @@ -256,7 +256,7 @@ pqParseInput3(PGconn *conn) if (!conn->result) { appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("out of memory")); + libpq_gettext("out of memory\n")); pqSaveErrorResult(conn); } } @@ -274,7 +274,7 @@ pqParseInput3(PGconn *conn) if (!conn->result) { appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("out of memory")); + libpq_gettext("out of memory\n")); pqSaveErrorResult(conn); } } @@ -355,7 +355,7 @@ pqParseInput3(PGconn *conn) if (!conn->result) { appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("out of memory")); + libpq_gettext("out of memory\n")); pqSaveErrorResult(conn); } } |