From e79b2dd5e7316c54c69a6d599d07b6bdf22e1d8b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 20 Feb 2000 02:37:40 +0000 Subject: Fix missing \n in some psql_error calls. --- src/bin/psql/help.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bin/psql/help.c') 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 -- cgit v1.2.3