tabe                                     Fri, 15 Jan 2010 16:55:09 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=293587

Log:
fix the letter type, which affects its type-error message

Changed paths:
    U   php/php-src/trunk/ext/gd/gd.c

Modified: php/php-src/trunk/ext/gd/gd.c
===================================================================
--- php/php-src/trunk/ext/gd/gd.c       2010-01-15 16:22:19 UTC (rev 293586)
+++ php/php-src/trunk/ext/gd/gd.c       2010-01-15 16:55:09 UTC (rev 293587)
@@ -1729,7 +1729,7 @@
        gdImagePtr im;
        int ct = (-1);

-       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zllll", &IM, 
&red, &green, &blue, &alpha) == FAILURE) {
+       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rllll", &IM, 
&red, &green, &blue, &alpha) == FAILURE) {
                RETURN_FALSE;
        }


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to