From 428e152be6bb0fd3867e41cee82a6d5968a11a26 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Tue, 29 Nov 2016 16:51:30 -0500 Subject: Use C99's bool Test Plan: Validate on lots of platforms Reviewers: erikd, simonmar, austin Reviewed By: erikd, simonmar Subscribers: michalt, thomie Differential Revision: https://phabricator.haskell.org/D2699 --- rts/RtsDllMain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rts/RtsDllMain.c') diff --git a/rts/RtsDllMain.c b/rts/RtsDllMain.c index b3b10f0295..80241cd380 100644 --- a/rts/RtsDllMain.c +++ b/rts/RtsDllMain.c @@ -37,7 +37,7 @@ DllMain ( HINSTANCE hInstance STG_UNUSED //case DLL_PROCESS_DETACH: shutdownHaskell(); } - return TRUE; + return true; } #endif -- cgit v1.2.1