diff options
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; |