diff options
author | Felipe Pena <felipe@php.net> | 2008-06-22 11:36:46 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-06-22 11:36:46 +0000 |
commit | 592cecf7d4058169edddb48603b1ba31d3983061 (patch) | |
tree | 9bf367e83d0a2580c4b4e99f444565953b140295 /ext/gd | |
parent | 4920a2f980444278109ef886c079bc18b2e02444 (diff) | |
download | php-git-592cecf7d4058169edddb48603b1ba31d3983061.tar.gz |
- Removed unused variables
Diffstat (limited to 'ext/gd')
-rw-r--r-- | ext/gd/gd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 844f0c5ac7..e03b2a6af5 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -3267,7 +3267,6 @@ PHP_FUNCTION(imagecolorsforindex) PHP_FUNCTION(imagegammacorrect) { zval *IM; - double inputgamma, outputgamma; gdImagePtr im; int i; double input, output; @@ -4721,7 +4720,6 @@ static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type ) char *fn_org = NULL; char *fn_dest = NULL; FILE *org, *dest; - int argc = ZEND_NUM_ARGS(); int dest_height = -1; int dest_width = -1; int org_height, org_width; |