From: Sami Kerola Date: Mon, 10 Dec 2018 20:30:59 +0000 (+0000) Subject: libsmartcols: fix variable shadowing X-Git-Tag: v2.34-rc1~185^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=539e96b14106d4245589fdf7963c68530a3026a7;p=thirdparty%2Futil-linux.git libsmartcols: fix variable shadowing libsmartcols/src/grouping.c:115:26: warning: declaration of ‘ln’ shadows a previous local [-Wshadow] libsmartcols/src/grouping.c:108:24: note: shadowed declaration is here Signed-off-by: Sami Kerola --- diff --git a/libsmartcols/src/grouping.c b/libsmartcols/src/grouping.c index 63ed6c4b20..7477946f67 100644 --- a/libsmartcols/src/grouping.c +++ b/libsmartcols/src/grouping.c @@ -112,9 +112,9 @@ void scols_groups_fix_members_order(struct libscols_table *tb) scols_reset_iter(&itr, SCOLS_ITER_FORWARD); while (scols_table_next_group(tb, &itr, &gr) == 0) { while (!list_empty(&gr->gr_members)) { - struct libscols_line *ln = list_entry(gr->gr_members.next, + struct libscols_line *line = list_entry(gr->gr_members.next, struct libscols_line, ln_groups); - list_del_init(&ln->ln_groups); + list_del_init(&line->ln_groups); } }