From afc3b0143c89405540461f306137ab6a9671c3bb Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Tue, 21 Nov 2023 16:10:27 +0100 Subject: [PATCH] Remove unneeded assignments in for loop header The last use of this variable in the loop body was removed by commit 93df658a0189. --- src/fe_utils/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe_utils/print.c b/src/fe_utils/print.c index 5bc4ef0c3e..a91292ab6d 100644 --- a/src/fe_utils/print.c +++ b/src/fe_utils/print.c @@ -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,