Skip to content
Snippets Groups Projects
Commit bbe3617e authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 2000-02-28 10:57:44 by simonmar]

fix = vs. == in conditional
parent 33fd067b
No related merge requests found
/* -----------------------------------------------------------------------------
* $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
......
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