summaryrefslogtreecommitdiffstats
path: root/sprintf.c
diff options
context:
space:
mode:
authormichal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-08-28 08:05:23 +0000
committermichal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-08-28 08:05:23 +0000
commit55c157da550407d4792900ba1d831b129f474153 (patch)
tree300e3a58cac901929c00518abaf11d7d3caaeb50 /sprintf.c
parent8915d93e0e2e0267454ec996b3446c15d2594a46 (diff)
downloadruby-55c157da550407d4792900ba1d831b129f474153.tar.gz
ruby-55c157da550407d4792900ba1d831b129f474153.tar.xz
ruby-55c157da550407d4792900ba1d831b129f474153.zip
Int vs Long cleanup #3 (ruby-core:352)
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2754 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 858fa348b..e60db6f26 100644
--- a/sprintf.c
+++ b/sprintf.c
@@ -26,7 +26,7 @@ remove_sign_bits(str, base)
int base;
{
char *s, *t, *end;
- int len;
+ unsigned long len;
s = t = str;
len = strlen(str);