From 3c861237fb765f477983b19031abf0f68ea4fae4 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 16 Jul 2016 23:22:33 -0400 Subject: [PATCH] Convince gcc to compile this code It shouldn't be that hard. --- gio/glocalfile.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gio/glocalfile.c b/gio/glocalfile.c index b3a7d2573..f6114f9bd 100644 --- a/gio/glocalfile.c +++ b/gio/glocalfile.c @@ -956,6 +956,8 @@ get_filesystem_readonly (GFileInfo *info, #endif /* G_OS_WIN32 */ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wformat-nonliteral" static void g_set_io_error (GError **error, const gchar *msg, @@ -970,6 +972,7 @@ g_set_io_error (GError **error, msg, display_name, g_strerror (errsv)); g_free (display_name); } +#pragma GCC diagnostic pop static GFileInfo * g_local_file_query_filesystem_info (GFile *file,