derick          Fri Dec 17 08:08:39 2004 EDT

  Modified files:              (Branch: PHP_5_0)
    /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.17.2.2&r2=1.17.2.3&ty=u
Index: php-src/main/php_sprintf.c
diff -u php-src/main/php_sprintf.c:1.17.2.2 php-src/main/php_sprintf.c:1.17.2.3
--- php-src/main/php_sprintf.c:1.17.2.2 Mon Nov 15 18:14:40 2004
+++ php-src/main/php_sprintf.c  Fri Dec 17 08:08:39 2004
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_sprintf.c,v 1.17.2.2 2004/11/15 23:14:40 fmk Exp $ */
+/* $Id: php_sprintf.c,v 1.17.2.3 2004/12/17 13:08:39 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