summaryrefslogtreecommitdiff
path: root/rts/Exception.cmm
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2006-06-20 15:19:01 +0000
committerSimon Marlow <simonmar@microsoft.com>2006-06-20 15:19:01 +0000
commit24ce1351fb121d429375f411a8a95d619de921e1 (patch)
tree2a81992f0689e845c77e99303996883dcd2f2f75 /rts/Exception.cmm
parent33db60082554c323f66369e02808d3df5970a36d (diff)
downloadhaskell-24ce1351fb121d429375f411a8a95d619de921e1.tar.gz
fix a lint-o
Diffstat (limited to 'rts/Exception.cmm')
-rw-r--r--rts/Exception.cmm2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Exception.cmm b/rts/Exception.cmm
index 6e656e07a0..8ca397b95e 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