gmenu: Remove stray semicolon in g_menu_clear_item()
authorColin Walters <walters@verbum.org>
Thu, 21 Jun 2012 16:08:05 +0000 (12:08 -0400)
committerColin Walters <walters@verbum.org>
Fri, 22 Jun 2012 14:32:25 +0000 (10:32 -0400)
gio/gmenu.c

index bd57810..c88fd7c 100644 (file)
@@ -451,7 +451,7 @@ g_menu_clear_item (struct item *item)
 {
   if (item->attributes != NULL)
     g_hash_table_unref (item->attributes);
-  if (item->links != NULL);
+  if (item->links != NULL)
     g_hash_table_unref (item->links);
 }