From 0c481599536fa132854a0bab88cf45f282220ba4 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Fri, 17 Dec 2004 13:07:57 +0000 Subject: [PATCH] - Fixed weird types, this also makes it compile on IRIX again. --- main/php_sprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'; -- 2.50.1