Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3feda1b

Browse files
committed
Fix whitespace
1 parent 3c4cf08 commit 3feda1b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/bin/psql/print.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1296,20 +1296,20 @@ print_aligned_vertical(const printTableContent *cont, FILE *fout)
12961296
swidth = 7;
12971297

12981298
if ((opt_border < 2) &&
1299-
((hmultiline &&
1299+
((hmultiline &&
13001300
(format == &pg_asciiformat_old)) ||
1301-
(dmultiline &&
1301+
(dmultiline &&
13021302
(format != &pg_asciiformat_old))))
13031303
iwidth++; /* for newline indicators */
13041304

13051305
min_width = hwidth + iwidth + swidth + 3;
13061306

1307-
/*
1307+
/*
13081308
* Record header width
13091309
*/
13101310
if (!opt_tuples_only)
13111311
{
1312-
/*
1312+
/*
13131313
* Record number
13141314
*/
13151315
unsigned int rwidth = 1 + log10(cont->nrows);
@@ -1337,7 +1337,7 @@ print_aligned_vertical(const printTableContent *cont, FILE *fout)
13371337
if ((width < dwidth) || (dheight > 1))
13381338
{
13391339
dmultiline = true;
1340-
if ((opt_border == 0) &&
1340+
if ((opt_border == 0) &&
13411341
(format != &pg_asciiformat_old))
13421342
width--; /* for wrap indicators */
13431343
}
@@ -1368,7 +1368,7 @@ print_aligned_vertical(const printTableContent *cont, FILE *fout)
13681368
{
13691369
unsigned int lhwidth = hwidth;
13701370
if ((opt_border < 2) &&
1371-
(hmultiline) &&
1371+
(hmultiline) &&
13721372
(format == &pg_asciiformat_old))
13731373
lhwidth++; /* for newline indicators */
13741374

@@ -1427,7 +1427,7 @@ print_aligned_vertical(const printTableContent *cont, FILE *fout)
14271427
if (swidth > 0)
14281428
fprintf(fout, "%*s", swidth, " ");
14291429

1430-
/*
1430+
/*
14311431
* New line indicator or separator's space
14321432
*/
14331433
if (hlineptr[hline + 1].ptr)
@@ -1455,7 +1455,7 @@ print_aligned_vertical(const printTableContent *cont, FILE *fout)
14551455
(format == &pg_asciiformat_old))
14561456
swidth++;
14571457

1458-
if ((opt_border == 0) &&
1458+
if ((opt_border == 0) &&
14591459
(format != &pg_asciiformat_old) &&
14601460
(hmultiline))
14611461
swidth++;

0 commit comments

Comments
 (0)