summaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-21 09:31:00 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-21 09:31:00 +0000
commit81de6b9d54bf4fe0f7a7bd6bfb98ebd45a6b140e (patch)
treecefa0bf8401697624442bee31e5f6087a880b489 /io.c
parent6e271da212126b58f586e005e2e50d0292b43e08 (diff)
downloadruby-81de6b9d54bf4fe0f7a7bd6bfb98ebd45a6b140e.tar.gz
ruby-81de6b9d54bf4fe0f7a7bd6bfb98ebd45a6b140e.tar.xz
ruby-81de6b9d54bf4fe0f7a7bd6bfb98ebd45a6b140e.zip
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@952 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 e61314a1f..59058d729 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