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

Commit dbe3161

Browse files
committed
Remove unnecessary cast causing a warning
Incidentally, I reversed the two names in the earlier commit. The original author was Sergey Muraviov and the reviewer was Emre Hasegeli.
1 parent 6513633 commit dbe3161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/psql/print.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1350,7 +1350,7 @@ print_aligned_vertical(const printTableContent *cont, FILE *fout)
13501350
{
13511351
int swidth, twidth = hwidth + 1;
13521352
fputs(hline? format->header_nl_left: " ", fout);
1353-
strlen_max_width((char *) hlineptr[hline].ptr, &twidth,
1353+
strlen_max_width(hlineptr[hline].ptr, &twidth,
13541354
encoding);
13551355
fprintf(fout, "%-s", hlineptr[hline].ptr);
13561356

0 commit comments

Comments
 (0)