diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-06-20 15:19:01 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-06-20 15:19:01 +0000 |
commit | 24ce1351fb121d429375f411a8a95d619de921e1 (patch) | |
tree | 2a81992f0689e845c77e99303996883dcd2f2f75 /rts/Exception.cmm | |
parent | 33db60082554c323f66369e02808d3df5970a36d (diff) | |
download | haskell-24ce1351fb121d429375f411a8a95d619de921e1.tar.gz |
fix a lint-o
Diffstat (limited to 'rts/Exception.cmm')
-rw-r--r-- | rts/Exception.cmm | 2 |
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 |