]> granicus.if.org Git - php/commitdiff
- MF43: Fixed weird types, this also makes it compile on IRIX again.
authorDerick Rethans <derick@php.net>
Fri, 17 Dec 2004 13:08:39 +0000 (13:08 +0000)
committerDerick Rethans <derick@php.net>
Fri, 17 Dec 2004 13:08:39 +0000 (13:08 +0000)
main/php_sprintf.c

index e18bd25c41ebc12bd98d75824156166c0756a838..52a84906512e3509efacd93750bedb994c022bc7 100644 (file)
@@ -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';