Skip to content
Snippets Groups Projects
Commit 720dedce authored by sof's avatar sof
Browse files

[project @ 1999-05-10 10:06:24 by sof]

oops, args to startupHaskell() wrong way around
parent 52c1ff20
No related merge requests found
/* -----------------------------------------------------------------------------
* $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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment