From ff28bdbbae4525d55f12cae2eb553bde2c541c4a Mon Sep 17 00:00:00 2001 From: gogotanaka Date: Thu, 29 Jan 2015 17:39:10 -0800 Subject: [PATCH 1/1] Fix indent introduce_num2dbl_with_to_f_func.patch To: https://bugs.ruby-lang.org/ --- math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.c b/math.c index 44ec735..c276cef 100644 --- a/math.c +++ b/math.c @@ -31,7 +31,7 @@ num2dbl_with_to_f(VALUE num) { switch (TYPE(num)) { case T_FLOAT: - return RFLOAT_VALUE(num); + return RFLOAT_VALUE(num); case T_FIXNUM: if (rb_method_basic_definition_p(rb_cFixnum, id_to_f)) { -- gogotanaka