diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2003-07-23 08:47:41 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2003-07-23 08:47:41 +0000 |
| commit | c154fc3a204a1452297bf399bbc3caef7e0f16b4 (patch) | |
| tree | ec111344790e54e6080f36c0b5e046ac5c89578f /src/bin/psql/input.c | |
| parent | a0743b132eef5ed8896f4c2d551af424691ba350 (diff) | |
| download | postgresql-c154fc3a204a1452297bf399bbc3caef7e0f16b4.tar.gz | |
Apply message style guide to frontend programs.
Diffstat (limited to 'src/bin/psql/input.c')
| -rw-r--r-- | src/bin/psql/input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/input.c b/src/bin/psql/input.c index f592546fd5..cb0cc67765 100644 --- a/src/bin/psql/input.c +++ b/src/bin/psql/input.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/input.c,v 1.23 2003/03/20 06:43:35 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/input.c,v 1.24 2003/07/23 08:47:39 petere Exp $ */ #include "postgres_fe.h" #include "input.h" @@ -204,7 +204,7 @@ saveHistory(char *fname) if (write_history(fname) == 0) return true; - psql_error("could not save history to %s: %s\n", fname, strerror(errno)); + psql_error("could not save history to file \"%s\": %s\n", fname, strerror(errno)); } #endif |
