From fdf5a5efb7b28c13085fe7313658de8d7b9914f6 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 15 Nov 2007 21:14:46 +0000 Subject: pgindent run for 8.3. --- src/bin/psql/common.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/bin/psql/common.c') diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index aa395703b6..abe14ab352 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2007, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.136 2007/10/13 20:18:41 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.137 2007/11/15 21:14:42 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -1076,8 +1076,8 @@ ExecQueryUsingCursor(const char *query, double *elapsed_msec) printQuery(results, &my_popt, pset.queryFout, pset.logfile); /* - * Make sure to flush the output stream, so intermediate - * results are visible to the client immediately. + * Make sure to flush the output stream, so intermediate results are + * visible to the client immediately. */ fflush(pset.queryFout); @@ -1502,7 +1502,7 @@ expand_tilde(char **filename) if (*(fn + 1) == '\0') get_home_path(home); /* ~ or ~/ only */ else if ((pw = getpwnam(fn + 1)) != NULL) - strlcpy(home, pw->pw_dir, sizeof(home)); /* ~user */ + strlcpy(home, pw->pw_dir, sizeof(home)); /* ~user */ *p = oldp; if (strlen(home) != 0) -- cgit v1.2.1