From 40299882e8a8463a257ec0384efc6bc3dc9036dc Mon Sep 17 00:00:00 2001 From: James Booth Date: Thu, 22 May 2014 20:03:47 +0100 Subject: [PATCH] Fixed define for g_hash_table_contains (glib < 2.32) --- src/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.h b/src/common.h index 111ff376..d22992fd 100644 --- a/src/common.h +++ b/src/common.h @@ -38,7 +38,7 @@ #if !GLIB_CHECK_VERSION(2,32,0) #define g_hash_table_add(hash_table, key) p_hash_table_add(hash_table, key) -#define g_hash_table_contains(hash_table, key) p_hash_table_contains(hash_table, key); +#define g_hash_table_contains(hash_table, key) p_hash_table_contains(hash_table, key) #endif #ifndef NOTIFY_CHECK_VERSION