From 64b08aae7989c2a26a0981df5ca6c3e30b49aee1 Mon Sep 17 00:00:00 2001 From: sof <unknown> Date: Thu, 3 Jun 1999 08:09:31 +0000 Subject: [PATCH] [project @ 1999-06-03 08:09:31 by sof] suppress needless warning --- ghc/includes/SchedAPI.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/includes/SchedAPI.h b/ghc/includes/SchedAPI.h index 26dac54e7610..014f906e3440 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; } -- GitLab