summaryrefslogtreecommitdiff
path: root/rational.c
diff options
context:
space:
mode:
Diffstat (limited to 'rational.c')
-rw-r--r--rational.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rational.c b/rational.c
index 9718913a07..24d7ff1afe 100644
--- a/rational.c
+++ b/rational.c
@@ -2011,13 +2011,13 @@ read_num(const char **s, int numsign, int strict,
{
VALUE ip, fp, exp;
- *num = rb_rational_raw2(ZERO, ONE);
+ *num = rb_rational_new2(ZERO, ONE);
exp = Qnil;
if (**s != '.') {
if (!read_digits(s, strict, &ip, NULL))
return 0;
- *num = rb_rational_raw2(ip, ONE);
+ *num = rb_rational_new2(ip, ONE);
}
if (**s == '.') {