]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
gsl: correct MultifitLinearWorkspace construct/free C names
authorEvan Nemerson <evan@coeus-group.com>
Mon, 30 Apr 2012 08:58:22 +0000 (01:58 -0700)
committerJürg Billeter <j@bitron.ch>
Sat, 23 Jun 2012 15:17:00 +0000 (17:17 +0200)
Fixes bug 670838.

vapi/gsl.vapi

index 0005d4f4252f239afb46881bb8858428e545899a..370ee2e3fc55005237448ffb7e8fce03b6231e88 100644 (file)
@@ -4309,7 +4309,7 @@ namespace Gsl
        }
        
        [Compact]
-       [CCode (cname="gsl_multifit_linear_workspace", cheader_filename="gsl/gsl_multifit.h")]
+       [CCode (cname="gsl_multifit_linear_workspace", free_function="gsl_multifit_linear_free", cheader_filename="gsl/gsl_multifit.h")]
        public class MultifitLinearWorkspace
        {
                public size_t n;
@@ -4322,7 +4322,7 @@ namespace Gsl
                public Vector xt;
                public Vector D;
                
-               [CCode (cname="gsl_multifit_linear_workspace_alloc")]
+               [CCode (cname="gsl_multifit_linear_alloc")]
                public MultifitLinearWorkspace (size_t n, size_t p);
        }