summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
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 e61314a1fb..59058d7294 100644
--- a/io.c
+++ b/io.c
@@ -2792,7 +2792,7 @@ rb_io_ctl(io, req, arg, io_p)
#ifdef HAVE_FCNTL
TRAP_BEG;
# if defined(__CYGWIN__)
- retval = io_p?ioctl(fd, cmd, (void*) narg):fcntl(fd, cmd, narg);
+ retval = io_p?ioctl(fd, cmd, (void*)narg):fcntl(fd, cmd, narg);
# else
retval = io_p?ioctl(fd, cmd, narg):fcntl(fd, cmd, narg);
# endif