diff options
author | michal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-05-28 18:11:07 +0000 |
---|---|---|
committer | michal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-05-28 18:11:07 +0000 |
commit | bab153b24385e3a27847707720837b4c749960ec (patch) | |
tree | 855451ed5ef9925d8a76511fdd099be6198358c9 /util.c | |
parent | ff3d6d201d72eaa0f21dc376d59f4ba2a3acad92 (diff) | |
download | ruby-bab153b24385e3a27847707720837b4c749960ec.tar.gz |
* array.c: fixed format string for 'long' args (%d -> %ld).
* class.c: ditto.
* eval.c: ditto.
* numeric.c: ditto.
* pack.c: ditto.
* parse.y: ditto.
* range.c: ditto.
* string.c: ditto.
* util.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2498 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -169,7 +169,7 @@ ruby_add_suffix(str, suffix) char buf[1024]; if (RSTRING(str)->len > 1000) - rb_fatal("Cannot do inplace edit on long filename (%d characters)", + rb_fatal("Cannot do inplace edit on long filename (%ld characters)", RSTRING(str)->len); #if defined(DJGPP) || defined(__CYGWIN32__) || defined(NT) |