From ec1aec95445a95d039a6c0ba6bc5dca901f81175 Mon Sep 17 00:00:00 2001 From: Yitzchak Scott-Thoennes Date: Wed, 21 Sep 2005 11:45:56 -0700 Subject: quiet a few warnings Message-ID: <20050922014555.GA2852@efn.org> p4raw-id: //depot/perl@25586 --- cygwin/cygwin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cygwin') 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; -- cgit v1.2.1