From 17b81e247c8c4652dc708661d8f559a9c3cbf510 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 18 Sep 2006 01:59:00 +0000 Subject: * dir.c (dir_s_glob): remove unused variable. * math.c (math_log): ditto. * re.c (rb_reg_regcomp): ditto. * eval.c (break_jump): ditto. * eval.c (rb_thread_yield_0): remove unused function. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'math.c') diff --git a/math.c b/math.c index 9bc7e2a40..2675c71e6 100644 --- a/math.c +++ b/math.c @@ -313,7 +313,7 @@ static VALUE math_log(int argc, VALUE *argv) { VALUE x, base; - double d, b; + double d; rb_scan_args(argc, argv, "11", &x, &base); Need_Float(x); -- cgit