diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-09-25 17:14:00 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-09-25 17:14:00 +0100 |
commit | aa4e6f0e09a45d0e82be4d495e97a7c9eb7342a8 (patch) | |
tree | 776a5a63911028628d4859e557ae28b8ac3ae656 | |
parent | 8cb310ccc99cc0ab3f1af8781d19d0cd08a9fb44 (diff) | |
download | rspamd-aa4e6f0e09a45d0e82be4d495e97a7c9eb7342a8.tar.gz rspamd-aa4e6f0e09a45d0e82be4d495e97a7c9eb7342a8.zip |
[Minor] Fix build with old glib
-rw-r--r-- | src/libutil/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/util.h b/src/libutil/util.h index 946d9f09a..d3ef5e082 100644 --- a/src/libutil/util.h +++ b/src/libutil/util.h @@ -187,7 +187,7 @@ void g_queue_clear (GQueue *queue); void g_queue_free_full (GQueue *queue, GDestroyNotify free_func); #endif #if ((GLIB_MAJOR_VERSION == 2) && (GLIB_MINOR_VERSION < 40)) -void g_ptr_array_insert (GPtrArray *array, gint index_, gpointer data) +void g_ptr_array_insert (GPtrArray *array, gint index_, gpointer data); #endif /* |