Fix typo in GLib version check
authorEmmanuele Bassi <ebassi@openedhand.com>
Tue, 9 Oct 2007 12:10:11 +0000 (12:10 +0000)
committerEmmanuele Bassi <ebassi@openedhand.com>
Tue, 9 Oct 2007 12:10:11 +0000 (12:10 +0000)
clutter/json/json-object.c

index 8720d19..18369bf 100644 (file)
@@ -158,7 +158,7 @@ json_object_add_member (JsonObject  *object,
   g_hash_table_replace (object->members, g_strdup (member_name), node);
 }
 
-#if GLIB_MAJOR_VERSION >= 2 && GLIB_MAJOR_VERSION < 14
+#if GLIB_MAJOR_VERSION >= 2 && GLIB_MINOR_VERSION < 14
 static void
 get_keys (gpointer key,
           gpointer value,