Commit ce74e19
committed
repo: remove redundant variable shadow in stats_table_print_structure
In stats_table_print_structure(), the variable 'entry' is declared
at the top of the loop body and assigned from item->util. Inside
the 'if (entry)' block, the same variable is redeclared and assigned
identically, shadowing the outer declaration unnecessarily.
Remove the inner redeclaration since the outer 'entry' is already
available and non-NULL at that point.
Signed-off-by: Mansi Singh <mansimaanu8627@gmail.com>1 parent d8fd4f5 commit ce74e19
1 file changed
Lines changed: 0 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
412 | 412 | | |
413 | 413 | | |
414 | 414 | | |
415 | | - | |
416 | 415 | | |
417 | 416 | | |
418 | 417 | | |
| |||
0 commit comments