From: Derick Rethans Date: Fri, 17 Dec 2004 13:08:44 +0000 (+0000) Subject: - MF43: Fixed weird types, this also makes it compile on IRIX again. X-Git-Tag: RELEASE_0_2~505 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6386777fe3bce80f813dc27caa47104520178cc0;p=php - MF43: Fixed weird types, this also makes it compile on IRIX again. --- diff --git a/main/php_sprintf.c b/main/php_sprintf.c index e18bd25c41..52a8490651 100644 --- a/main/php_sprintf.c +++ b/main/php_sprintf.c @@ -33,7 +33,7 @@ PHPAPI int php_sprintf (char*s, const char* format, ...) { va_list args; - char *ret; + int ret; va_start (args, format); s[0] = '\0';