diff options
author | Austin Seipp <austin@well-typed.com> | 2014-07-21 20:35:30 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-07-28 09:29:16 -0500 |
commit | f81154f7c7c155ee0f9df344865cd4498af92214 (patch) | |
tree | e9651431c660e634b5dd69cb177aab3e92d0fdbe /rts/RtsDllMain.c | |
parent | ee0fd621a2d966ffc5ce3a2400abf757cf2a8f73 (diff) | |
download | haskell-f81154f7c7c155ee0f9df344865cd4498af92214.tar.gz |
rts: delint/detab/dewhitespace RtsDllMain.c
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'rts/RtsDllMain.c')
-rw-r--r-- | rts/RtsDllMain.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rts/RtsDllMain.c b/rts/RtsDllMain.c index 06c565588f..b3b10f0295 100644 --- a/rts/RtsDllMain.c +++ b/rts/RtsDllMain.c @@ -21,8 +21,8 @@ BOOL WINAPI DllMain ( HINSTANCE hInstance STG_UNUSED , DWORD reason - , LPVOID reserved STG_UNUSED - ) + , LPVOID reserved STG_UNUSED + ) { /* * Note: the DllMain() doesn't call startupHaskell() for you, @@ -31,10 +31,10 @@ DllMain ( HINSTANCE hInstance STG_UNUSED * you pass to the RTS. */ switch (reason) { - + // shutdownHaskelAndExit() is already being called, - // so I don't think we need this. BL 2009/11/17 - + // so I don't think we need this. BL 2009/11/17 + //case DLL_PROCESS_DETACH: shutdownHaskell(); } return TRUE; |