summaryrefslogtreecommitdiff
path: root/ghc/rts
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2006-02-21 16:33:08 +0000
committerSimon Marlow <simonmar@microsoft.com>2006-02-21 16:33:08 +0000
commit5d9f7faf4c6519af8da750919c986ffcda660030 (patch)
treec39238c1399ab2e3d5c19ecc0c49ea8cb705c24e /ghc/rts
parent15f6c4cff24c2b9ffc1191733ddb48c5f72d15be (diff)
downloadhaskell-5d9f7faf4c6519af8da750919c986ffcda660030.tar.gz
warning fix
Diffstat (limited to 'ghc/rts')
-rw-r--r--ghc/rts/Storage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/rts/Storage.c b/ghc/rts/Storage.c
index 1c14265f49..195f410e5d 100644
--- a/ghc/rts/Storage.c
+++ b/ghc/rts/Storage.c
@@ -772,7 +772,7 @@ dirty_MUT_VAR(StgRegTable *reg, StgClosure *p)
bdescr *bd;
if (p->header.info == &stg_MUT_VAR_CLEAN_info) {
p->header.info = &stg_MUT_VAR_DIRTY_info;
- bd = Bdescr(p);
+ bd = Bdescr((StgPtr)p);
if (bd->gen_no > 0) recordMutableCap(p,cap,bd->gen_no);
}
}