ruby-changes:63468
From: Jeremy <ko1@a...>
Date: Thu, 29 Oct 2020 07:29:22 +0900 (JST)
Subject: [ruby-changes:63468] 58fd54f914 (master): Fix error in update-deps due to tab/space difference
https://git.ruby-lang.org/ruby.git/commit/?id=58fd54f914 From 58fd54f91472ba8aa96793ce2b131053a47527a0 Mon Sep 17 00:00:00 2001 From: Jeremy Evans <code@j...> Date: Wed, 28 Oct 2020 14:31:20 -0700 Subject: Fix error in update-deps due to tab/space difference diff --git a/io.c b/io.c index faf8331..5b3893f 100644 --- a/io.c +++ b/io.c @@ -7606,7 +7606,7 @@ rb_io_reopen(int argc, VALUE *argv, VALUE file) https://github.com/ruby/ruby/blob/trunk/io.c#L7606 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 -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/