summaryrefslogtreecommitdiff
path: root/math.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-18 01:59:00 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-18 01:59:00 +0000
commit749df1d0fd6252b73d0f283feebb597f6f750bdf (patch)
tree5a2796521a2c923270736344e1cb1d9d1052b461 /math.c
parent392f342f04b8039bb5a352b17dac02311e260276 (diff)
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@10957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'math.c')
-rw-r--r--math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math.c b/math.c
index 9bc7e2a402..2675c71e6d 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);