From 7178e10cd5aeadb6e5cb6a29a49cbb731097a525 Mon Sep 17 00:00:00 2001 From: Loic Le Page Date: Wed, 19 Jan 2022 18:28:17 +0100 Subject: [PATCH] Fix redefinition of local variable in gio/tests/testfilemonitor.c --- gio/tests/testfilemonitor.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gio/tests/testfilemonitor.c b/gio/tests/testfilemonitor.c index a52ade715..2307f7463 100644 --- a/gio/tests/testfilemonitor.c +++ b/gio/tests/testfilemonitor.c @@ -235,12 +235,12 @@ check_expected_events (RecordedEvent *expected, * error messages. Print the expected and actual events first. */ else { - GList *l; + GList *ll; gsize j; g_test_message ("Recorded events:"); - for (l = recorded; l != NULL; l = l->next) - output_event ((RecordedEvent *) l->data); + for (ll = recorded; ll != NULL; ll = ll->next) + output_event ((RecordedEvent *) ll->data); g_test_message ("Expected events:"); for (j = 0; j < n_expected; j++)