summaryrefslogtreecommitdiff
path: root/ext/IO
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2002-04-26 00:41:39 +0000
committerGurusamy Sarathy <gsar@cpan.org>2002-04-26 00:41:39 +0000
commit7c436af33814ce716234caa65f470fe47c2a0efa (patch)
treee51dccce04c0b8b80a5b9b4734b273846081317e /ext/IO
parent530b72baaecf6b4faf758663fc0fded0f4426004 (diff)
downloadperl-7c436af33814ce716234caa65f470fe47c2a0efa.tar.gz
various signed/unsigned mismatch nits
p4raw-id: //depot/perl@16173
Diffstat (limited to 'ext/IO')
-rw-r--r--ext/IO/IO.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/IO/IO.xs b/ext/IO/IO.xs
index 7edbf2c3e3..26b332b6a4 100644
--- a/ext/IO/IO.xs
+++ b/ext/IO/IO.xs
@@ -242,7 +242,7 @@ PPCODE:
for(i=1, j=0 ; j < nfd ; j++) {
fds[j].fd = SvIV(ST(i));
i++;
- fds[j].events = SvIV(ST(i));
+ fds[j].events = (short)SvIV(ST(i));
i++;
fds[j].revents = 0;
}