tony2001                Mon Jun 30 10:10:45 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/standard       string.c 
  Log:
  int -> long
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/string.c?r1=1.445.2.14.2.69.2.25&r2=1.445.2.14.2.69.2.26&diff_format=u
Index: php-src/ext/standard/string.c
diff -u php-src/ext/standard/string.c:1.445.2.14.2.69.2.25 
php-src/ext/standard/string.c:1.445.2.14.2.69.2.26
--- php-src/ext/standard/string.c:1.445.2.14.2.69.2.25  Wed Jun 25 12:16:16 2008
+++ php-src/ext/standard/string.c       Mon Jun 30 10:10:44 2008
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: string.c,v 1.445.2.14.2.69.2.25 2008/06/25 12:16:16 ohill Exp $ */
+/* $Id: string.c,v 1.445.2.14.2.69.2.26 2008/06/30 10:10:44 tony2001 Exp $ */
 
 /* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
 
@@ -998,7 +998,7 @@
 PHP_FUNCTION(explode)
 {
        zval **str, **delim, **zlimit = NULL;
-       int limit = -1;
+       long limit = -1;
        int argc = ZEND_NUM_ARGS();
        
        if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ZZ|l", &delim, 
&str, &limit) == FAILURE) {



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

Reply via email to