summaryrefslogtreecommitdiffstats
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
commite8fb5892e2e46b054597a5c43217f6f166186ceb (patch)
tree224ad7b05f14f6c97af0fe58281d1e6a9c1991c7 /sprintf.c
parent62f5d3d1ecd8b0be7f9adfb41d42a9c2a015f699 (diff)
downloadruby-e8fb5892e2e46b054597a5c43217f6f166186ceb.tar.gz
ruby-e8fb5892e2e46b054597a5c43217f6f166186ceb.tar.xz
ruby-e8fb5892e2e46b054597a5c43217f6f166186ceb.zip
* sprintf.c (rb_sprintf): fixed typo.
git-svn-id: http://svn.ruby-lang.org/repos/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 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