From: Manish Singh Date: Mon, 25 Aug 2003 22:02:22 +0000 (+0000) Subject: fix typo in last commit, cast to GTypeValueTable * to get rid of const X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=d2cd289bf2f49815a72ff9166ba7bb6335758c55;p=dana%2Fcg-glib.git fix typo in last commit, cast to GTypeValueTable * to get rid of const Mon Aug 25 14:51:46 2003 Manish Singh * gtypemodule.c (g_type_module_register_type): fix typo in last commit, cast to GTypeValueTable * to get rid of const warning. --- diff --git a/gobject/ChangeLog b/gobject/ChangeLog index d6e404de..e59dbfa0 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,8 @@ +Mon Aug 25 14:51:46 2003 Manish Singh + + * gtypemodule.c (g_type_module_register_type): fix typo in last + commit, cast to GTypeValueTable * to get rid of const warning. + Mon Aug 25 14:16:48 2003 Owen Taylor * gtypemodule.c (g_type_module_register_type): Clarify diff --git a/gobject/gtypemodule.c b/gobject/gtypemodule.c index b80b0c45..dcffca1a 100644 --- a/gobject/gtypemodule.c +++ b/gobject/gtypemodule.c @@ -318,7 +318,7 @@ g_type_module_register_type (GTypeModule *module, } if (module_type_info->info.value_table) - g_free (odule_type_info->info.value_table); + g_free ((GTypeValueTable *) module_type_info->info.value_table); } else {