summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2005-10-26 22:47:23 +0000
committerAntony Dovgal <tony2001@php.net>2005-10-26 22:47:23 +0000
commit4c987583285d1ea3ea0faec713c897d7de9a990b (patch)
treef53faffe265432fab11ba946c67d41bb1682211f
parent5b502880b652f1bbabf34a8ac31d8a62f59ddc8a (diff)
downloadphp-git-4c987583285d1ea3ea0faec713c897d7de9a990b.tar.gz
MFH: make compilers happy
-rwxr-xr-xext/spl/php_spl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c
index 342c1d0086..ddeaa9a721 100755
--- a/ext/spl/php_spl.c
+++ b/ext/spl/php_spl.c
@@ -340,8 +340,8 @@ PHP_FUNCTION(spl_autoload_call)
{
zval **class_name, *retval = NULL;
char *func_name, *lc_name;
- int func_name_len;
- long dummy;
+ uint func_name_len;
+ ulong dummy;
HashPosition function_pos;
autoload_func_info *alfi;