From 6386777fe3bce80f813dc27caa47104520178cc0 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Fri, 17 Dec 2004 13:08:44 +0000 Subject: - MF43: Fixed weird types, this also makes it compile on IRIX again. --- main/php_sprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php_sprintf.c') 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'; -- cgit v1.2.1