aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-10 11:26:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-10 11:26:22 +0000
commit12088a7e95f203972c52f3b4d7d9bd8f909a20dc (patch)
tree8a0a008309425144fcc4114840ed96ffcb23cfd5 /io.c
parent5a77a4e71b3de4936015a0ffe4c1e92cd40caa68 (diff)
downloadruby-12088a7e95f203972c52f3b4d7d9bd8f909a20dc.tar.gz
io.c: fix typo
* io.c (rb_io_make_open_file): remove useless backslash. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47865 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 12757f1d96..cc0cfda801 100644
--- a/io.c
+++ b/io.c
@@ -7420,7 +7420,7 @@ rb_io_make_open_file(VALUE obj)
Check_Type(obj, T_FILE);
if (RFILE(obj)->fptr) {
rb_io_close(obj);
- rb_io_fptr_finalize(RFILE(obj)->fptr);\
+ rb_io_fptr_finalize(RFILE(obj)->fptr);
RFILE(obj)->fptr = 0;
}
fp = rb_io_fptr_new();