From: Tony Cook Date: Tue, 14 Jun 2011 13:31:17 +0000 (+1000) Subject: correct the API i_get_image_file_limits() macro X-Git-Tag: v0.84~11 X-Git-Url: http://git.imager.perl.org/imager.git/commitdiff_plain/907d9d7a0c310bd0cbb040735941565800c9bd56 correct the API i_get_image_file_limits() macro --- diff --git a/imext.h b/imext.h index 5e8b2df2..73af77a9 100644 --- a/imext.h +++ b/imext.h @@ -194,7 +194,7 @@ extern im_ext_funcs *imager_function_ext_table; #define i_set_image_file_limits(max_width, max_height, max_bytes) \ ((im_extt->f_i_set_image_file_limits)((max_width), (max_height), (max_bytes))) -#define i_get_image_file_limits(max_width, max_height, max_bytes) \ +#define i_get_image_file_limits(pmax_width, pmax_height, pmax_bytes) \ ((im_extt->f_i_get_image_file_limits)((pmax_width), (pmax_height), (pmax_bytes))) #define i_int_check_image_file_limits(width, height, channels, sample_size) \ ((im_extt->f_i_int_check_image_file_limits)((width), (height), (channels), (sample_size)))