aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index 9e8710897c..35c406a2a3 100644
--- a/io.c
+++ b/io.c
@@ -1644,7 +1644,7 @@ rb_io_getline_fast(OpenFile *fptr, unsigned char delim, long limit)
}
if (!NIL_P(str)) {
- if (limit > 0) {
+ if (limit != 0) {
fptr->lineno++;
lineno = INT2FIX(fptr->lineno);
}
@@ -1740,7 +1740,7 @@ rb_io_getline(int argc, VALUE *argv, VALUE io)
}
if (!NIL_P(str)) {
- if (limit > 0) {
+ if (limit != 0) {
fptr->lineno++;
lineno = INT2FIX(fptr->lineno);
}