[project @ 1999-05-10 10:06:24 by sof]
authorsof <unknown>
Mon, 10 May 1999 10:06:24 +0000 (10:06 +0000)
committersof <unknown>
Mon, 10 May 1999 10:06:24 +0000 (10:06 +0000)
oops, args to startupHaskell() wrong way around

ghc/rts/Main.c

index 45c1596..990c9eb 100644 (file)
@@ -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: