mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 06:56:14 +01:00
Fix redefinition of local variable in gio/tests/testfilemonitor.c
This commit is contained in:
parent
c324ce5c2a
commit
7178e10cd5
@ -235,12 +235,12 @@ check_expected_events (RecordedEvent *expected,
|
|||||||
* error messages. Print the expected and actual events first. */
|
* error messages. Print the expected and actual events first. */
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
GList *l;
|
GList *ll;
|
||||||
gsize j;
|
gsize j;
|
||||||
|
|
||||||
g_test_message ("Recorded events:");
|
g_test_message ("Recorded events:");
|
||||||
for (l = recorded; l != NULL; l = l->next)
|
for (ll = recorded; ll != NULL; ll = ll->next)
|
||||||
output_event ((RecordedEvent *) l->data);
|
output_event ((RecordedEvent *) ll->data);
|
||||||
|
|
||||||
g_test_message ("Expected events:");
|
g_test_message ("Expected events:");
|
||||||
for (j = 0; j < n_expected; j++)
|
for (j = 0; j < n_expected; j++)
|
||||||
|
Loading…
Reference in New Issue
Block a user