summaryrefslogtreecommitdiff
path: root/ext/-test-/arith_seq
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-21 16:19:31 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-21 16:19:31 +0000
commitc1b896541025a691c281d8e4a0d9194e395ce65b (patch)
tree745445260a3ba21e32bee74713d651978eb5d664 /ext/-test-/arith_seq
parent4e42ebf0188cc38e8e7b47fe32bf83ef45e42431 (diff)
../arith_seq/../extract.c: remove unused variable
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66485 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/-test-/arith_seq')
-rw-r--r--ext/-test-/arith_seq/extract/extract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/-test-/arith_seq/extract/extract.c b/ext/-test-/arith_seq/extract/extract.c
index 602afa7ca1..93b89c239a 100644
--- a/ext/-test-/arith_seq/extract/extract.c
+++ b/ext/-test-/arith_seq/extract/extract.c
@@ -5,7 +5,7 @@ arith_seq_s_extract(VALUE mod, VALUE obj)
{
rb_arithmetic_sequence_components_t x;
VALUE ret;
- int f, r;
+ int r;
r = rb_arithmetic_sequence_extract(obj, &x);