diff options
author | Yitzchak Scott-Thoennes <sthoenna@efn.org> | 2005-09-21 11:45:56 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-09-23 15:12:03 +0000 |
commit | ec1aec95445a95d039a6c0ba6bc5dca901f81175 (patch) | |
tree | ae30eaf72473ef64f2f6d3022e9e071be13ac3f1 /cygwin | |
parent | 3fe280b74970c9b125752060fd031caf0b20f4e9 (diff) | |
download | perl-ec1aec95445a95d039a6c0ba6bc5dca901f81175.tar.gz |
quiet a few warnings
Message-ID: <20050922014555.GA2852@efn.org>
p4raw-id: //depot/perl@25586
Diffstat (limited to 'cygwin')
-rw-r--r-- | cygwin/cygwin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cygwin/cygwin.c b/cygwin/cygwin.c index 21f3b3437e..03f48dd769 100644 --- a/cygwin/cygwin.c +++ b/cygwin/cygwin.c @@ -23,8 +23,8 @@ do_spawnvp (const char *path, const char * const *argv) Sigsave_t ihand,qhand; int childpid, result, status; - rsignal_save(SIGINT, SIG_IGN, &ihand); - rsignal_save(SIGQUIT, SIG_IGN, &qhand); + rsignal_save(SIGINT, (Sighandler_t) SIG_IGN, &ihand); + rsignal_save(SIGQUIT, (Sighandler_t) SIG_IGN, &qhand); childpid = spawnvp(_P_NOWAIT,path,argv); if (childpid < 0) { status = -1; |