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/Timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rts/Timer.c') diff --git a/rts/Timer.c b/rts/Timer.c index 9136c60f20..a8b0e20a5f 100644 --- a/rts/Timer.c +++ b/rts/Timer.c @@ -134,7 +134,7 @@ stopTimer(void) } void -exitTimer (rtsBool wait) +exitTimer (bool wait) { if (RtsFlags.MiscFlags.tickInterval != 0) { exitTicker(wait); -- cgit v1.2.1