diff options
author | S.H <[email protected]> | 2024-01-11 09:21:55 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-10 16:21:55 -0800 |
commit | a6ba45e9b0e224be350556299f3d890171117d9e (patch) | |
tree | c87b155ba909ba9563032f04ba647c63a3765ccb /io.c | |
parent | ef751252711ca7ecabb3e4ad9214fa0d1d63608a (diff) |
Remove unnecessary semicolons (#9469)
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2678,7 +2678,7 @@ rb_io_eof(VALUE io) READ_CHECK(fptr); #if RUBY_CRLF_ENVIRONMENT if (!NEED_READCONV(fptr) && NEED_NEWLINE_DECORATOR_ON_READ(fptr)) { - return RBOOL(eof(fptr->fd));; + return RBOOL(eof(fptr->fd)); } #endif return RBOOL(io_fillbuf(fptr) < 0); |