]> source.dussan.org Git - rspamd.git/commitdiff
Fix build.
authorVsevolod Stakhov <vsevolod@rambler-co.ru>
Wed, 15 Feb 2012 13:08:20 +0000 (17:08 +0400)
committerVsevolod Stakhov <vsevolod@rambler-co.ru>
Wed, 15 Feb 2012 13:08:20 +0000 (17:08 +0400)
src/mem_pool.c

index c68ae4b132b6e405c4df83a9e48201fb10da0cf1..05f1bc6906a00938dd03856b2cacf7b51d9863be 100644 (file)
@@ -199,7 +199,7 @@ memory_pool_new (gsize size)
        /* Set it upon first call of set variable */
        new->variables = NULL;
 #if ((GLIB_MAJOR_VERSION == 2) && (GLIB_MINOR_VERSION <= 30))
-       new->mtx = G_STATIC_MUTEX_INIT;
+       g_static_mutex_init (&new->mtx);
 #else
        g_mutex_init (&new->mtx);
 #endif