From 539e96b14106d4245589fdf7963c68530a3026a7 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Mon, 10 Dec 2018 20:30:59 +0000 Subject: 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 --- libsmartcols/src/grouping.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libsmartcols') diff --git a/libsmartcols/src/grouping.c b/libsmartcols/src/grouping.c index 63ed6c4b2..7477946f6 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); } } -- cgit v1.2.3-55-g7522