From: sof Date: Thu, 3 Jun 1999 08:09:31 +0000 (+0000) Subject: [project @ 1999-06-03 08:09:31 by sof] X-Git-Tag: Approximately_9120_patches~6161 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=64b08aae7989c2a26a0981df5ca6c3e30b49aee1;p=ghc-hetmet.git [project @ 1999-06-03 08:09:31 by sof] suppress needless warning --- diff --git a/ghc/includes/SchedAPI.h b/ghc/includes/SchedAPI.h index 26dac54..014f906 100644 --- a/ghc/includes/SchedAPI.h +++ b/ghc/includes/SchedAPI.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: SchedAPI.h,v 1.3 1999/05/21 14:46:21 sof Exp $ + * $Id: SchedAPI.h,v 1.4 1999/06/03 08:09:31 sof Exp $ * * (c) The GHC Team 1998 * @@ -67,7 +67,7 @@ createStrictIOThread(nat stack_size, StgClosure *closure) { StgTSO *t; t = createThread(stack_size); pushClosure(t,closure); - pushClosure(t,&forceIO_closure); + pushClosure(t,(StgClosure*)&forceIO_closure); return t; }