From: Kevin Day Date: Wed, 14 Mar 2012 19:35:43 +0000 (-0500) Subject: Bugfix: use proper parameter data type X-Git-Tag: 0.3.0~77 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=962543f813dcbd301ba44d8ea3ca9bc8b592b0e2;p=fll Bugfix: use proper parameter data type f_array_length should be used and was not being used. --- diff --git a/level_1/fl_console/c/console.c b/level_1/fl_console/c/console.c index b06d349..4bcc30a 100644 --- a/level_1/fl_console/c/console.c +++ b/level_1/fl_console/c/console.c @@ -11,7 +11,7 @@ extern "C"{ #endif #ifndef _di_fl_process_parameters_ - f_return_status fl_process_parameters(const f_array_length argc, const f_string argv[], f_console_parameter parameters[], const f_u_int total_parameters, f_string_lengths *remaining){ + f_return_status fl_process_parameters(const f_array_length argc, const f_string argv[], f_console_parameter parameters[], const f_array_length total_parameters, f_string_lengths *remaining){ #ifndef _di_level_1_parameter_checking_ if (remaining == f_null) return f_invalid_parameter; #endif // _di_level_1_parameter_checking_