From: Ilia Alshanetsky Date: Tue, 11 Sep 2007 23:34:25 +0000 (+0000) Subject: MFH: Fixed function definition X-Git-Tag: php-5.2.5RC1~178 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79325e3c557426aa12ea83b05503729535867b24;p=php MFH: Fixed function definition --- diff --git a/ext/gd/libgd/gd.h b/ext/gd/libgd/gd.h index ef6da3c31d..7ef2caa488 100644 --- a/ext/gd/libgd/gd.h +++ b/ext/gd/libgd/gd.h @@ -643,7 +643,7 @@ int gdImageBrightness(gdImagePtr src, int brightness); int gdImageContrast(gdImagePtr src, double contrast); /* Simply adds or substracts respectively red, green or blue to a pixel */ -int gdImageColor(gdImagePtr src, int red, int green, int blue); +int gdImageColor(gdImagePtr src, const int red, const int green, const int blue, const int alpha); /* Image convolution by a 3x3 custom matrix */ int gdImageConvolution(gdImagePtr src, float ft[3][3], float filter_div, float offset);