From e8fb5892e2e46b054597a5c43217f6f166186ceb Mon Sep 17 00:00:00 2001 From: ocean Date: Tue, 26 Jul 2005 11:53:14 +0000 Subject: * sprintf.c (rb_sprintf): fixed typo. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8839 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- sprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sprintf.c b/sprintf.c index bdb24c1da..aef00584a 100644 --- a/sprintf.c +++ b/sprintf.c @@ -894,7 +894,7 @@ VALUE #ifdef HAVE_STDARG_PROTOTYPES rb_sprintf(const char *format, ...) #else -ruby_sprintf(format, va_alist) +rb_sprintf(format, va_alist) const char *format; va_dcl #endif -- cgit