Fix uninitialized-variable warnings induced by recent commit.

This commit is contained in:
Tom Lane 2014-04-30 11:15:15 -04:00
parent 503de54621
commit 5358bfdc98
1 changed files with 2 additions and 2 deletions

View File

@ -1266,7 +1266,7 @@ print_aligned_vertical(const printTableContent *cont, FILE *fout)
swidth = 1; /* "header data" */
else if (opt_border == 1)
swidth = 3; /* "header | data" */
else if (opt_border > 1)
else
swidth = 7; /* "| header | data |" */
/* Wrap to maximum width */
@ -1285,7 +1285,7 @@ print_aligned_vertical(const printTableContent *cont, FILE *fout)
delta += 6; /* "* RECORD " */
else if (opt_border == 1)
delta += 10; /* "-[ RECORD ]" */
else if (opt_border == 2)
else
delta += 15; /* "+-[ RECORD ]-+" */
if (delta > 0)