mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 23:46:17 +01:00
fix typo in last commit, cast to GTypeValueTable * to get rid of const
Mon Aug 25 14:51:46 2003 Manish Singh <yosh@gimp.org> * gtypemodule.c (g_type_module_register_type): fix typo in last commit, cast to GTypeValueTable * to get rid of const warning.
This commit is contained in:
parent
e2797b3525
commit
d2cd289bf2
@ -1,3 +1,8 @@
|
|||||||
|
Mon Aug 25 14:51:46 2003 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* 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 <otaylor@redhat.com>
|
Mon Aug 25 14:16:48 2003 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* gtypemodule.c (g_type_module_register_type): Clarify
|
* gtypemodule.c (g_type_module_register_type): Clarify
|
||||||
|
@ -318,7 +318,7 @@ g_type_module_register_type (GTypeModule *module,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (module_type_info->info.value_table)
|
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
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user