From fccfc058497412d0801fdbb33c12ccdcd566e38f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20K=C3=B6ppe?= Date: Sun, 11 Jul 2004 17:09:13 +0000 Subject: [PATCH] Fix name of module init function. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6027 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Examples/test-suite/guile/multivalue_runme.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SWIG/Examples/test-suite/guile/multivalue_runme.scm b/SWIG/Examples/test-suite/guile/multivalue_runme.scm index 5162fe1f7..d1d7fbfe7 100644 --- a/SWIG/Examples/test-suite/guile/multivalue_runme.scm +++ b/SWIG/Examples/test-suite/guile/multivalue_runme.scm @@ -3,5 +3,5 @@ ;; The SWIG modules have "passive" Linkage, i.e., they don't generate ;; Guile modules (namespaces) but simply put all the bindings into the ;; current module. That's enough for such a simple test. -(dynamic-call "scm_init_test_module" (dynamic-link "./libmultivalue.so")) +(dynamic-call "scm_init_multivalue_module" (dynamic-link "./libmultivalue.so")) (load "../schemerunme/multivalue.scm")