From bbe3617e46aa95ecb2519285d824a64bca17d228 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 28 Feb 2000 10:57:44 +0000 Subject: [PATCH] [project @ 2000-02-28 10:57:44 by simonmar] fix = vs. == in conditional --- ghc/rts/Itimer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/rts/Itimer.c b/ghc/rts/Itimer.c index 0db283c..1bdd2bb 100644 --- a/ghc/rts/Itimer.c +++ b/ghc/rts/Itimer.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Itimer.c,v 1.8 2000/01/13 12:40:15 simonmar Exp $ + * $Id: Itimer.c,v 1.9 2000/02/28 10:57:44 simonmar Exp $ * * (c) The GHC Team, 1995-1999 * @@ -64,7 +64,7 @@ handle_tick(int unused STG_UNUSED) total_ticks++; #ifdef PROFILING - if (do_prof_ticks = rtsTrue) { + if (do_prof_ticks == rtsTrue) { CCS_TICK(CCCS); } #endif -- 1.7.10.4