aboutsummaryrefslogtreecommitdiffstats
path: root/sprintf.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-26 11:53:14 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-26 11:53:14 +0000
commit36987b005ee6f6c2d80b10fb83bb7399cbcd0a43 (patch)
tree224ad7b05f14f6c97af0fe58281d1e6a9c1991c7 /sprintf.c
parent5dab497052d15c575183039c8d0f4a92426ae895 (diff)
downloadruby-36987b005ee6f6c2d80b10fb83bb7399cbcd0a43.tar.gz
* sprintf.c (rb_sprintf): fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8839 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sprintf.c')
-rw-r--r--sprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sprintf.c b/sprintf.c
index bdb24c1da0..aef00584aa 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