g_module_symbol takes a gpointer *, not just a gpointer
authorManish Singh <yosh@gimp.org>
Mon, 3 Dec 2001 19:22:50 +0000 (19:22 +0000)
committerManish Singh <yosh@src.gnome.org>
Mon, 3 Dec 2001 19:22:50 +0000 (19:22 +0000)
2001-12-03  Manish Singh  <yosh@gimp.org>

        * tests/module-test.c: g_module_symbol takes a gpointer *, not just
        a gpointer

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
tests/module-test.c

index 428ef5537290daf734b08ae5e4b3df6fed6d7c1d..50d57ed368b16eecd4eddecef8ba72c80db82cef 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-12-03  Manish Singh  <yosh@gimp.org>
+
+       * tests/module-test.c: g_module_symbol takes a gpointer *, not just
+       a gpointer
+
 2001-11-29  Havoc Pennington  <hp@redhat.com>
 
        * glib/gtree.c (g_tree_foreach):
index 428ef5537290daf734b08ae5e4b3df6fed6d7c1d..50d57ed368b16eecd4eddecef8ba72c80db82cef 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-03  Manish Singh  <yosh@gimp.org>
+
+       * tests/module-test.c: g_module_symbol takes a gpointer *, not just
+       a gpointer
+
 2001-11-29  Havoc Pennington  <hp@redhat.com>
 
        * glib/gtree.c (g_tree_foreach):
index 428ef5537290daf734b08ae5e4b3df6fed6d7c1d..50d57ed368b16eecd4eddecef8ba72c80db82cef 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-03  Manish Singh  <yosh@gimp.org>
+
+       * tests/module-test.c: g_module_symbol takes a gpointer *, not just
+       a gpointer
+
 2001-11-29  Havoc Pennington  <hp@redhat.com>
 
        * glib/gtree.c (g_tree_foreach):
index 428ef5537290daf734b08ae5e4b3df6fed6d7c1d..50d57ed368b16eecd4eddecef8ba72c80db82cef 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-03  Manish Singh  <yosh@gimp.org>
+
+       * tests/module-test.c: g_module_symbol takes a gpointer *, not just
+       a gpointer
+
 2001-11-29  Havoc Pennington  <hp@redhat.com>
 
        * glib/gtree.c (g_tree_foreach):
index 428ef5537290daf734b08ae5e4b3df6fed6d7c1d..50d57ed368b16eecd4eddecef8ba72c80db82cef 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-03  Manish Singh  <yosh@gimp.org>
+
+       * tests/module-test.c: g_module_symbol takes a gpointer *, not just
+       a gpointer
+
 2001-11-29  Havoc Pennington  <hp@redhat.com>
 
        * glib/gtree.c (g_tree_foreach):
index 428ef5537290daf734b08ae5e4b3df6fed6d7c1d..50d57ed368b16eecd4eddecef8ba72c80db82cef 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-03  Manish Singh  <yosh@gimp.org>
+
+       * tests/module-test.c: g_module_symbol takes a gpointer *, not just
+       a gpointer
+
 2001-11-29  Havoc Pennington  <hp@redhat.com>
 
        * glib/gtree.c (g_tree_foreach):
index 428ef5537290daf734b08ae5e4b3df6fed6d7c1d..50d57ed368b16eecd4eddecef8ba72c80db82cef 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-03  Manish Singh  <yosh@gimp.org>
+
+       * tests/module-test.c: g_module_symbol takes a gpointer *, not just
+       a gpointer
+
 2001-11-29  Havoc Pennington  <hp@redhat.com>
 
        * glib/gtree.c (g_tree_foreach):
index 428ef5537290daf734b08ae5e4b3df6fed6d7c1d..50d57ed368b16eecd4eddecef8ba72c80db82cef 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-03  Manish Singh  <yosh@gimp.org>
+
+       * tests/module-test.c: g_module_symbol takes a gpointer *, not just
+       a gpointer
+
 2001-11-29  Havoc Pennington  <hp@redhat.com>
 
        * glib/gtree.c (g_tree_foreach):
index f77235b25452c8d064b24a7f9a11e0dbef7ddacc..ba013b426734acd49c554f10872610b4c4d521c9 100644 (file)
@@ -95,7 +95,7 @@ main (int   arg,
   if (!module_self)
     g_error ("error: %s", g_module_error ());
 
-  if (!g_module_symbol (module_self, "g_module_close", (gpointer) &f_self))
+  if (!g_module_symbol (module_self, "g_module_close", (gpointer *) &f_self))
     g_error ("error: %s", g_module_error ());
 
   module_a = g_module_open (plugin_a, G_MODULE_BIND_LAZY);
@@ -109,21 +109,21 @@ main (int   arg,
   /* get plugin state vars */
 
   if (!g_module_symbol (module_a, "gplugin_a_state", 
-                       (gpointer) &gplugin_a_state))
+                       (gpointer *) &gplugin_a_state))
     g_error ("error: %s", g_module_error ());
   
   if (!g_module_symbol (module_b, "gplugin_b_state", 
-                       (gpointer) &gplugin_b_state))
+                       (gpointer *) &gplugin_b_state))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, "check-init");
   
   /* get plugin specific symbols and call them
    */
-  if (!g_module_symbol (module_a, "gplugin_a_func", (gpointer) &f_a))
+  if (!g_module_symbol (module_a, "gplugin_a_func", (gpointer *) &f_a))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
  
-  if (!g_module_symbol (module_b, "gplugin_b_func", (gpointer) &f_b))
+  if (!g_module_symbol (module_b, "gplugin_b_func", (gpointer *) &f_b))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
  
@@ -136,15 +136,15 @@ main (int   arg,
   /* get and call globally clashing functions
    */
  
-  if (!g_module_symbol (module_self, "g_clash_func", (gpointer) &f_self))
+  if (!g_module_symbol (module_self, "g_clash_func", (gpointer *) &f_self))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
 
-  if (!g_module_symbol (module_a, "g_clash_func", (gpointer) &f_a))
+  if (!g_module_symbol (module_a, "g_clash_func", (gpointer *) &f_a))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
  
-  if (!g_module_symbol (module_b, "g_clash_func", (gpointer) &f_b))
+  if (!g_module_symbol (module_b, "g_clash_func", (gpointer *) &f_b))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
  
@@ -159,11 +159,11 @@ main (int   arg,
 
   /* get and call clashing plugin functions  */
 
-  if (!g_module_symbol (module_a, "gplugin_clash_func", (gpointer) &f_a))
+  if (!g_module_symbol (module_a, "gplugin_clash_func", (gpointer *) &f_a))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
 
-  if (!g_module_symbol (module_b, "gplugin_clash_func", (gpointer) &f_b))
+  if (!g_module_symbol (module_b, "gplugin_clash_func", (gpointer *) &f_b))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);
 
@@ -177,7 +177,7 @@ main (int   arg,
 
   /* call gmodule function from A  */
 
-  if (!g_module_symbol (module_a, "gplugin_a_module_func", (gpointer) &gmod_f))
+  if (!g_module_symbol (module_a, "gplugin_a_module_func", (gpointer *) &gmod_f))
     g_error ("error: %s", g_module_error ());
   test_states (NULL, NULL, NULL);