diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-02-27 23:53:55 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-02-27 23:53:55 +0000 |
commit | 912bef379dd9ebe1382c1d0c9ec6f2a5a57be401 (patch) | |
tree | c86decf3e3a7e6d8b30416159e02aa49331868d6 | |
parent | 57eabeea2956608ff2ad244e64b5523d2b58d47d (diff) | |
download | php-git-912bef379dd9ebe1382c1d0c9ec6f2a5a57be401.tar.gz |
Fixed compiler warning.
-rw-r--r-- | ext/standard/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/dir.c b/ext/standard/dir.c index 6ed208372c..e19171b3d6 100644 --- a/ext/standard/dir.c +++ b/ext/standard/dir.c @@ -466,7 +466,7 @@ PHP_FUNCTION(scandir) if (!flags) { n = php_scandir(path, &namelist, 0, php_alphasort); } else { - n = php_scandir(path, &namelist, 0, php_alphasortr); + n = php_scandir(path, &namelist, 0, (void *) php_alphasortr); } if (n < 0) { |