From 3a2a3deced15a48d8ddd96f6f91b052fcb26df23 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Fri, 29 Sep 2017 12:50:09 +0200 Subject: [PATCH] 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 --- vapi/gnutls.vapi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3