From: Philip Withnall Date: Tue, 7 Sep 2010 16:06:26 +0000 (+0100) Subject: readline: fix the cname of CompentryFunc X-Git-Tag: 0.10.0~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc710d7af6c4abb5623b0846eb3d4abe7ddc2b3f;p=thirdparty%2Fvala.git readline: fix the cname of CompentryFunc --- diff --git a/vapi/readline.vapi b/vapi/readline.vapi index c0335cc21..de10d1767 100644 --- a/vapi/readline.vapi +++ b/vapi/readline.vapi @@ -27,7 +27,7 @@ namespace Readline { public delegate int CommandFunc (int a, int b); [CCode (cname = "rl_completion_func_t", has_target = false, array_length = false, array_null_terminated = true)] public delegate string[]? CompletionFunc (string str, int a, int b); - [CCode (cname = "rl_quote_func_t", has_target = false)] + [CCode (cname = "rl_compentry_func_t", has_target = false)] public delegate string? CompentryFunc (string str, int a); [CCode (cname = "rl_quote_func_t", has_target = false)] public delegate string QuoteFunc (string str, int a, string b);