summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-20 07:02:20 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-20 07:02:20 +0000
commitc1397c573e0463dad6a395078b6aa267e85400ea (patch)
tree0a727d32fc4ab05c9dc75b3394076816784d4350 /io.c
parent8d9e1f9dad107582eac539b9e1e22cdea852c0ae (diff)
io.c: enclose statements by ifdef
* io.c (maygvl_copy_stream_read): enclose following statements by ifdef, not only a case label. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48050 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 9548c439c5..3a0cc01e04 100644
--- a/io.c
+++ b/io.c
@@ -10333,9 +10333,9 @@ maygvl_copy_stream_read(int has_gvl, struct copy_stream_struct *stp, char *buf,
goto retry_read;
#ifdef ENOSYS
case ENOSYS:
-#endif
stp->notimp = "pread";
return -1;
+#endif
}
stp->syserr = offset == (off_t)-1 ? "read" : "pread";
stp->error_no = errno;