From: Michael 'Mickey' Lauer Date: Sun, 1 Mar 2009 03:07:57 +0000 (+0100) Subject: glib-2.0: Fix get_system_config_dirs binding X-Git-Tag: 0.6.0~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2251433f91efbfc5afb4259e150d89320f218109;p=thirdparty%2Fvala.git glib-2.0: Fix get_system_config_dirs binding get_system_config_dirs() needs the same treatment as get_system_data_dirs() Signed-off-by: Michael 'Mickey' Lauer --- diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index 53326752d..34da3ee6b 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -1916,7 +1916,8 @@ namespace GLib { [CCode (cname = "g_get_system_data_dirs", array_length = false, array_null_terminated = true)] [NoArrayLength] public static weak string[] get_system_data_dirs (); - [CCode (cname = "g_get_system_config_dirs")] + [CCode (cname = "g_get_system_config_dirs", array_length = false, array_null_terminated = true)] + [NoArrayLength] public static weak string[] get_system_config_dirs (); [CCode (cname = "g_get_host_name")] public static weak string get_host_name ();