diff --git a/gio/ChangeLog b/gio/ChangeLog index 3e51e90eb..56d5931c4 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,8 @@ +2008-06-11 A. Walton + + * tests/g-file.c (test_g_file_new_null): + Fix broken test case. + 2008-06-11 Matthias Clasen * pltcheck.sh: We use g_clear_error now. diff --git a/gio/tests/g-file.c b/gio/tests/g-file.c index 4becc1d1d..09b7ea1eb 100644 --- a/gio/tests/g-file.c +++ b/gio/tests/g-file.c @@ -69,7 +69,7 @@ test_g_file_new_null (void) i = 0; while (uris[i]) { - file = g_file_new_for_uri (paths[i++]); + file = g_file_new_for_uri (uris[i++]); g_assert (file != NULL); g_object_unref(file); }