From 24ce1351fb121d429375f411a8a95d619de921e1 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Tue, 20 Jun 2006 15:19:01 +0000 Subject: [PATCH] fix a lint-o --- rts/Exception.cmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rts/Exception.cmm b/rts/Exception.cmm index 6e656e0..8ca397b 100644 --- a/rts/Exception.cmm +++ b/rts/Exception.cmm @@ -329,7 +329,7 @@ raisezh_fast /* ToDo: currently this is a hack. Would be much better if * the info was only displayed for an *uncaught* exception. */ - if (RtsFlags_ProfFlags_showCCSOnException(RtsFlags) != 0) { + if (RtsFlags_ProfFlags_showCCSOnException(RtsFlags) != 0::I32) { foreign "C" fprintCCS_stderr(W_[CCCS] "ptr"); } #endif -- 1.7.10.4