diff options
author | Peter Eisentraut | 2007-09-25 16:29:34 +0000 |
---|---|---|
committer | Peter Eisentraut | 2007-09-25 16:29:34 +0000 |
commit | 588901df84588981aabf40df3287219405ec443b (patch) | |
tree | cfc90622af633ee1882b402e0c582bce08d4a487 /src/bin/scripts/common.c | |
parent | e5b5739a2d8da002d1e4c1795997b6d92d21f588 (diff) |
Small string tweaks
Diffstat (limited to 'src/bin/scripts/common.c')
-rw-r--r-- | src/bin/scripts/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/scripts/common.c b/src/bin/scripts/common.c index 6903fa6e033..93272b29c3b 100644 --- a/src/bin/scripts/common.c +++ b/src/bin/scripts/common.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/bin/scripts/common.c,v 1.27 2007/07/08 19:07:38 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/scripts/common.c,v 1.28 2007/09/25 16:29:34 petere Exp $ * *------------------------------------------------------------------------- */ @@ -349,7 +349,7 @@ handle_sigint(SIGNAL_ARGS) if (PQcancel(cancelConn, errbuf, sizeof(errbuf))) fprintf(stderr, _("Cancel request sent\n")); else - fprintf(stderr, _("Could not send cancel request: %s\n"), errbuf); + fprintf(stderr, _("Could not send cancel request: %s"), errbuf); } errno = save_errno; /* just in case the write changed it */ |