From: Derick Rethans Date: Fri, 17 Dec 2004 13:07:57 +0000 (+0000) Subject: - Fixed weird types, this also makes it compile on IRIX again. X-Git-Tag: php-4.3.11RC1~256 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c481599536fa132854a0bab88cf45f282220ba4;p=php - Fixed weird types, this also makes it compile on IRIX again. --- diff --git a/main/php_sprintf.c b/main/php_sprintf.c index 6fe98be5a6..1e41e37493 100644 --- a/main/php_sprintf.c +++ b/main/php_sprintf.c @@ -26,7 +26,7 @@ PHPAPI int php_sprintf (char*s, const char* format, ...) { va_list args; - char *ret; + int ret; va_start (args, format); s[0] = '\0';