From 10b5a8befc16bdefdbfb8d1fc10df11d53acb6ef Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Wed, 14 May 2014 16:02:35 +0800 Subject: [PATCH] Fix the thumbnail-verification Test The third parameter of the thumnail_verify() function had been updated to const GLocalFileStat, so update the thumbnail-verification test likewise so that the test works properly on all supported platforms. https://bugzilla.gnome.org/show_bug.cgi?id=711547 --- gio/tests/thumbnail-verification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/tests/thumbnail-verification.c b/gio/tests/thumbnail-verification.c index c9f51c88a..ef2ca70d7 100644 --- a/gio/tests/thumbnail-verification.c +++ b/gio/tests/thumbnail-verification.c @@ -91,7 +91,7 @@ test_validity (void) /* Run all the tests. */ for (i = 0; i < G_N_ELEMENTS (tests); i++) { - GStatBuf stat_buf; + GLocalFileStat stat_buf; const gchar *thumbnail_path; gchar *file_uri; gboolean result;