gmenu: Remove stray semicolon in g_menu_clear_item()

This commit is contained in:
Colin Walters 2012-06-21 12:08:05 -04:00
parent 598c3d233a
commit c1ada372e9

View 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);
}