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/help.c | |
parent | bf023bd1624b19725c546642e19dbd9091a489fe (diff) | |
download | postgresql-e79b2dd5e7316c54c69a6d599d07b6bdf22e1d8b.tar.gz postgresql-e79b2dd5e7316c54c69a6d599d07b6bdf22e1d8b.zip |
Fix missing \n in some psql_error calls.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index ddd8b22c350..30d2307e892 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.20 2000/02/19 05:01:16 ishii Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.21 2000/02/20 02:37:40 tgl Exp $ */ #include "postgres.h" #include "help.h" @@ -57,7 +57,7 @@ usage(void) user = pw->pw_name; else { - psql_error("could not get current user name: %s", strerror(errno)); + psql_error("could not get current user name: %s\n", strerror(errno)); exit(EXIT_FAILURE); } #else |