From: Kalle Sommer Nielsen Date: Tue, 17 Aug 2010 12:57:04 +0000 (+0000) Subject: Fixed compiler warning X-Git-Tag: php-5.4.0alpha1~191^2~1085 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0655d34070f47e99f34e74611d5a6fff250e610a;p=php Fixed compiler warning --- diff --git a/win32/glob.c b/win32/glob.c index c95c45794e..0fcd63b3d3 100644 --- a/win32/glob.c +++ b/win32/glob.c @@ -519,8 +519,7 @@ glob0(pattern, pglob) } static int -compare(p, q) - const void *p, *q; +compare(const void *p, const void *q) { return(strcmp(*(char **)p, *(char **)q)); }