From 55c157da550407d4792900ba1d831b129f474153 Mon Sep 17 00:00:00 2001 From: michal Date: Wed, 28 Aug 2002 08:05:23 +0000 Subject: 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 --- sprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sprintf.c') 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); -- cgit