derick          Fri Dec 17 08:08:44 2004 EDT

  Modified files:              
    /php-src/main       php_sprintf.c 
  Log:
  - MF43: Fixed weird types, this also makes it compile on IRIX again.
  
http://cvs.php.net/diff.php/php-src/main/php_sprintf.c?r1=1.19&r2=1.20&ty=u
Index: php-src/main/php_sprintf.c
diff -u php-src/main/php_sprintf.c:1.19 php-src/main/php_sprintf.c:1.20
--- php-src/main/php_sprintf.c:1.19     Mon Nov 15 16:04:09 2004
+++ php-src/main/php_sprintf.c  Fri Dec 17 08:08:44 2004
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_sprintf.c,v 1.19 2004/11/15 21:04:09 fmk Exp $ */
+/* $Id: php_sprintf.c,v 1.20 2004/12/17 13:08:44 derick Exp $ */
 
 #include <stdio.h>
 #include <stdarg.h>
@@ -33,7 +33,7 @@
 php_sprintf (char*s, const char* format, ...)
 {
   va_list args;
-  char *ret;
+  int ret;
 
   va_start (args, format);
   s[0] = '\0';

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to