diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-01-12 19:36:36 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-01-12 19:36:36 +0000 |
commit | f6689a328f07fe579d57c1a419fd8b53db7499c7 (patch) | |
tree | e2e62cf090af25a999091eaea74f4a59db4d1c9b /src/bin/psql/print.c | |
parent | 267c6c7f060142d9ec2fd39b312e7f7b35cc6f5d (diff) | |
download | postgresql-f6689a328f07fe579d57c1a419fd8b53db7499c7.tar.gz postgresql-f6689a328f07fe579d57c1a419fd8b53db7499c7.zip |
Fixed a few "fixes" and bugs. Adjusted messages and options to GNU suggestions.
Diffstat (limited to 'src/bin/psql/print.c')
-rw-r--r-- | src/bin/psql/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c index 15d40a806a9..156cdf6c653 100644 --- a/src/bin/psql/print.c +++ b/src/bin/psql/print.c @@ -204,7 +204,7 @@ print_aligned_text(const char *title, const char * const * headers, if (opt_border == 0) total_w = col_count - 1; else if (opt_border == 1) - total_w = col_count * 3 - 2; + total_w = col_count * 3 - 1; else total_w = col_count * 3 + 1; |