diff options
author | Max Kellermann <max@duempel.org> | 2012-04-04 20:07:11 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-04-04 20:13:15 +0200 |
commit | 4feb57e8953d114b85abd3910b477ef58ef171ae (patch) | |
tree | 1832af7ba4f4efdb6194f6ffcd6daf427e344538 /src/archive | |
parent | 712e3eb1201315ded996b3f004eb4c613e2cecdd (diff) |
db_lock, archive/bz2, ...: workaround for G_STATIC_MUTEX_INIT warning
Diffstat (limited to 'src/archive')
-rw-r--r-- | src/archive/bz2_archive_plugin.c | 5 |
1 files changed, 5 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) { |