From 12088a7e95f203972c52f3b4d7d9bd8f909a20dc Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 10 Oct 2014 11:26:22 +0000 Subject: 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 --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- cgit v1.2.3