From: Rico Tzschichholz Date: Fri, 29 Sep 2017 10:50:09 +0000 (+0200) Subject: gnutls: Fix free_function ccode-attribute of Certificate X-Git-Tag: 0.39.1~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e35aec677447e472078d2a40535db33c2e3dd1d;p=thirdparty%2Fvala.git gnutls: Fix free_function ccode-attribute of Certificate Remove an extra space which breaks null-safe free-wrapper generation. Thanks to getzze https://bugzilla.gnome.org/show_bug.cgi?id=788181 --- diff --git a/vapi/gnutls.vapi b/vapi/gnutls.vapi index 67b77c5b2..b7bd2817b 100644 --- a/vapi/gnutls.vapi +++ b/vapi/gnutls.vapi @@ -908,7 +908,7 @@ namespace GnuTLS } [Compact] - [CCode (cname = "struct gnutls_x509_crt_int", cprefix = "gnutls_x509_crt_", free_function = "gnutls_x509_crt_deinit ")] + [CCode (cname = "struct gnutls_x509_crt_int", cprefix = "gnutls_x509_crt_", free_function = "gnutls_x509_crt_deinit")] public class Certificate { private static int init (out Certificate cert);