aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/archive/bz2_archive_plugin.c5
-rw-r--r--src/db_lock.c6
2 files changed, 11 insertions, 0 deletions
diff --git a/src/archive/bz2_archive_plugin.c b/src/archive/bz2_archive_plugin.c
index 303f22136..e2420048b 100644
--- a/src/archive/bz2_archive_plugin.c
+++ b/src/archive/bz2_archive_plugin.c
@@ -103,6 +103,11 @@ bz2_destroy(struct bz2_input_stream *data)
/* archive open && listing routine */
+#if GCC_CHECK_VERSION(4, 2)
+/* workaround for a warning caused by G_STATIC_MUTEX_INIT */
+#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
+#endif
+
static struct archive_file *
bz2_open(const char *pathname, GError **error_r)
{
diff --git a/src/db_lock.c b/src/db_lock.c
index 88adc3614..53759673d 100644
--- a/src/db_lock.c
+++ b/src/db_lock.c
@@ -19,6 +19,12 @@
#include "config.h"
#include "db_lock.h"
+#include "gcc.h"
+
+#if GCC_CHECK_VERSION(4, 2)
+/* workaround for a warning caused by G_STATIC_MUTEX_INIT */
+#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
+#endif
GStaticMutex db_mutex = G_STATIC_MUTEX_INIT;