summaryrefslogtreecommitdiffstats
path: root/error.c
diff options
context:
space:
mode:
authormichal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-08-21 15:47:54 +0000
committermichal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-08-21 15:47:54 +0000
commitfa79abb533cc03018a50945bc1d88b2e1b90248f (patch)
tree3b51176716a877c59eebbe6e82533d2cae3d7bc5 /error.c
parent2ab0494d233b2ee5f7eed92b7dfd0486ab36396d (diff)
downloadruby-fa79abb533cc03018a50945bc1d88b2e1b90248f.tar.gz
ruby-fa79abb533cc03018a50945bc1d88b2e1b90248f.tar.xz
ruby-fa79abb533cc03018a50945bc1d88b2e1b90248f.zip
*.c: Int vs Long cleanup
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r--error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/error.c b/error.c
index 878b3c335..adacc3c98 100644
--- a/error.c
+++ b/error.c
@@ -378,7 +378,7 @@ static VALUE
check_backtrace(bt)
VALUE bt;
{
- int i;
+ long i;
static char *err = "backtrace must be Array of String";
if (!NIL_P(bt)) {