mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-12 20:36:15 +01:00
g_module_symbol takes a gpointer *, not just a gpointer
This commit is contained in:
parent
88b9c7f902
commit
7fac2ee037
@ -3,6 +3,8 @@
|
|||||||
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
||||||
a gpointer
|
a gpointer
|
||||||
|
|
||||||
|
* tests/libmoduletestplugin_a.c: here too
|
||||||
|
|
||||||
2001-11-29 Havoc Pennington <hp@redhat.com>
|
2001-11-29 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
* glib/gtree.c (g_tree_foreach):
|
* glib/gtree.c (g_tree_foreach):
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
||||||
a gpointer
|
a gpointer
|
||||||
|
|
||||||
|
* tests/libmoduletestplugin_a.c: here too
|
||||||
|
|
||||||
2001-11-29 Havoc Pennington <hp@redhat.com>
|
2001-11-29 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
* glib/gtree.c (g_tree_foreach):
|
* glib/gtree.c (g_tree_foreach):
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
||||||
a gpointer
|
a gpointer
|
||||||
|
|
||||||
|
* tests/libmoduletestplugin_a.c: here too
|
||||||
|
|
||||||
2001-11-29 Havoc Pennington <hp@redhat.com>
|
2001-11-29 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
* glib/gtree.c (g_tree_foreach):
|
* glib/gtree.c (g_tree_foreach):
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
||||||
a gpointer
|
a gpointer
|
||||||
|
|
||||||
|
* tests/libmoduletestplugin_a.c: here too
|
||||||
|
|
||||||
2001-11-29 Havoc Pennington <hp@redhat.com>
|
2001-11-29 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
* glib/gtree.c (g_tree_foreach):
|
* glib/gtree.c (g_tree_foreach):
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
||||||
a gpointer
|
a gpointer
|
||||||
|
|
||||||
|
* tests/libmoduletestplugin_a.c: here too
|
||||||
|
|
||||||
2001-11-29 Havoc Pennington <hp@redhat.com>
|
2001-11-29 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
* glib/gtree.c (g_tree_foreach):
|
* glib/gtree.c (g_tree_foreach):
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
||||||
a gpointer
|
a gpointer
|
||||||
|
|
||||||
|
* tests/libmoduletestplugin_a.c: here too
|
||||||
|
|
||||||
2001-11-29 Havoc Pennington <hp@redhat.com>
|
2001-11-29 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
* glib/gtree.c (g_tree_foreach):
|
* glib/gtree.c (g_tree_foreach):
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
||||||
a gpointer
|
a gpointer
|
||||||
|
|
||||||
|
* tests/libmoduletestplugin_a.c: here too
|
||||||
|
|
||||||
2001-11-29 Havoc Pennington <hp@redhat.com>
|
2001-11-29 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
* glib/gtree.c (g_tree_foreach):
|
* glib/gtree.c (g_tree_foreach):
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
* tests/module-test.c: g_module_symbol takes a gpointer *, not just
|
||||||
a gpointer
|
a gpointer
|
||||||
|
|
||||||
|
* tests/libmoduletestplugin_a.c: here too
|
||||||
|
|
||||||
2001-11-29 Havoc Pennington <hp@redhat.com>
|
2001-11-29 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
* glib/gtree.c (g_tree_foreach):
|
* glib/gtree.c (g_tree_foreach):
|
||||||
|
@ -58,7 +58,7 @@ gplugin_a_module_func (GModule *module)
|
|||||||
{
|
{
|
||||||
void (*f) (void) = NULL;
|
void (*f) (void) = NULL;
|
||||||
|
|
||||||
if (!g_module_symbol (module, "gplugin_say_boo_func", (gpointer) &f))
|
if (!g_module_symbol (module, "gplugin_say_boo_func", (gpointer *) &f))
|
||||||
{
|
{
|
||||||
g_print ("error: %s\n", g_module_error ());
|
g_print ("error: %s\n", g_module_error ());
|
||||||
exit (1);
|
exit (1);
|
||||||
|
Loading…
Reference in New Issue
Block a user