diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-02-20 02:37:40 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-02-20 02:37:40 +0000 |
commit | e79b2dd5e7316c54c69a6d599d07b6bdf22e1d8b (patch) | |
tree | d81096c139807398cf2ed9f090a15beafb75bf62 /src/bin/psql/input.c | |
parent | bf023bd1624b19725c546642e19dbd9091a489fe (diff) |
Fix missing \n in some psql_error calls.
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 6d05370d21a..2e509aad0b1 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.10 2000/02/16 13:15:26 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/input.c,v 1.11 2000/02/20 02:37:40 tgl Exp $ */ #include "postgres.h" #include "input.h" @@ -160,7 +160,7 @@ saveHistory(char *fname) { if (write_history(fname) != 0) { - psql_error("could not save history to %s: %s", fname, strerror(errno)); + psql_error("could not save history to %s: %s\n", fname, strerror(errno)); return false; } return true; |