diff options
author | Rico Tzschichholz <ricotz@ubuntu.com> | 2017-09-29 12:50:09 +0200 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2017-10-05 22:16:34 +0200 |
commit | 3a2a3deced15a48d8ddd96f6f91b052fcb26df23 (patch) | |
tree | c3d3dfeef26cf2956559769b978ae28b7ae342db /vapi | |
parent | 5a1408ccd2803820cbf2fa2197656b6e4f3aeb36 (diff) | |
download | vala-3a2a3deced15a48d8ddd96f6f91b052fcb26df23.tar.gz |
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
Diffstat (limited to 'vapi')
-rw-r--r-- | vapi/gnutls.vapi | 2 |
1 files changed, 1 insertions, 1 deletions
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); |