From d2cd289bf2f49815a72ff9166ba7bb6335758c55 Mon Sep 17 00:00:00 2001 From: Manish Singh Date: Mon, 25 Aug 2003 22:02:22 +0000 Subject: [PATCH] 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. --- gobject/ChangeLog | 5 +++++ gobject/gtypemodule.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gobject/ChangeLog b/gobject/ChangeLog index d6e404d..e59dbfa 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 b80b0c4..dcffca1 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 { -- 2.7.4