Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit afc3b01

Browse files
committed
Remove unneeded assignments in for loop header
The last use of this variable in the loop body was removed by commit 93df658.
1 parent 24ea53d commit afc3b01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fe_utils/print.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,7 @@ print_aligned_vertical(const printTableContent *cont,
14011401
}
14021402

14031403
/* find longest data cell */
1404-
for (i = 0, ptr = cont->cells; *ptr; ptr++, i++)
1404+
for (ptr = cont->cells; *ptr; ptr++)
14051405
{
14061406
int width,
14071407
height,

0 commit comments

Comments
 (0)