summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2020-10-28 14:31:20 -0700
committerJeremy Evans <code@jeremyevans.net>2020-10-28 15:29:05 -0700
commit58fd54f91472ba8aa96793ce2b131053a47527a0 (patch)
tree7ad1df8e2d06cd092551f951c279202700adbb98
parentdfb3605bbee9c3cfbc1c354594c367472f29cb35 (diff)
Fix error in update-deps due to tab/space difference
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3715
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index faf8331c58..5b3893f64d 100644
--- a/io.c
+++ b/io.c
@@ -7606,7 +7606,7 @@ rb_io_reopen(int argc, VALUE *argv, VALUE file)
int e = rb_freopen(rb_str_encode_ospath(fptr->pathv),
rb_io_oflags_modestr(oflags),
fptr->stdio_file);
- if (e) rb_syserr_fail_path(e, fptr->pathv);
+ if (e) rb_syserr_fail_path(e, fptr->pathv);
fptr->fd = fileno(fptr->stdio_file);
rb_fd_fix_cloexec(fptr->fd);
#ifdef USE_SETVBUF