From: sof Date: Mon, 10 May 1999 10:06:24 +0000 (+0000) Subject: [project @ 1999-05-10 10:06:24 by sof] X-Git-Tag: Approximately_9120_patches~6238 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=720dedcefbaac7553a171376ff6276983092c9ef;p=ghc-hetmet.git [project @ 1999-05-10 10:06:24 by sof] oops, args to startupHaskell() wrong way around --- diff --git a/ghc/rts/Main.c b/ghc/rts/Main.c index 45c1596..990c9eb 100644 --- a/ghc/rts/Main.c +++ b/ghc/rts/Main.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Main.c,v 1.7 1999/05/10 08:23:55 sof Exp $ + * $Id: Main.c,v 1.8 1999/05/10 10:06:24 sof Exp $ * * (c) The GHC Team 1998-1999 * @@ -98,7 +98,7 @@ DllMain ( HINSTANCE hInstance */ switch (reason) { case DLL_PROCESS_ATTACH: - startupHaskell(args,1); + startupHaskell(1,args); /* ToDo: gracefully handle startupHaskell() failures.. */ return TRUE; case DLL_PROCESS_DETACH: