diff options
author | Derick Rethans <derick@php.net> | 2004-12-17 13:08:44 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2004-12-17 13:08:44 +0000 |
commit | 6386777fe3bce80f813dc27caa47104520178cc0 (patch) | |
tree | 1559f79c405ee6ce419753f9ce5085e56a06ed90 /main/php_sprintf.c | |
parent | b462fc8bd20137ec983a887fec95902bed1161ad (diff) | |
download | php-git-6386777fe3bce80f813dc27caa47104520178cc0.tar.gz |
- MF43: Fixed weird types, this also makes it compile on IRIX again.
Diffstat (limited to 'main/php_sprintf.c')
-rw-r--r-- | main/php_sprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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'; |