From ea4be7219b1c74afd6288d328de84207544e6675 Mon Sep 17 00:00:00 2001 From: manus Date: Fri, 7 Dec 2007 01:15:55 +0000 Subject: [PATCH] Fixed bug#13627 where we had an incorrect cast. git-svn-id: https://svn.origo.ethz.ch/eiffelstudio/trunk/Src/library/cURL@71400 8089f293-4706-0410-a29e-feb5c42a2edf --- curl_externals.e | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curl_externals.e b/curl_externals.e index 44c058cc..274b9d4d 100644 --- a/curl_externals.e +++ b/curl_externals.e @@ -120,8 +120,8 @@ feature {NONE} -- C externals "[ { (FUNCTION_CAST(void, (struct curl_httppost **, struct curl_httppost **, int, char *, int, char *, int)) $a_api) - ((struct curl_httppost *)$a_form, - (struct curl_httppost *)$a_last_pointer, + ((struct curl_httppost **)$a_form, + (struct curl_httppost **)$a_last_pointer, (int)$a_arg_1, (char *)$a_arg_1_value, (int)$a_arg_2,