From 58fd54f91472ba8aa96793ce2b131053a47527a0 Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Wed, 28 Oct 2020 14:31:20 -0700 Subject: Fix error in update-deps due to tab/space difference --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io.c') 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 -- cgit v1.2.3