Remove unneeded assignments in for loop header

The last use of this variable in the loop body was removed by commit
93df658a01.
This commit is contained in:
Alvaro Herrera 2023-11-21 16:10:27 +01:00
parent 24ea53dcfa
commit afc3b0143c
No known key found for this signature in database
GPG Key ID: 1C20ACB9D5C564AE
1 changed files with 1 additions and 1 deletions

View File

@ -1401,7 +1401,7 @@ print_aligned_vertical(const printTableContent *cont,
}
/* find longest data cell */
for (i = 0, ptr = cont->cells; *ptr; ptr++, i++)
for (ptr = cont->cells; *ptr; ptr++)
{
int width,
height,