diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-03-27 11:24:48 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-03-27 11:24:48 +0000 |
commit | 24fd303c1d5f8199556a9a119ad5bcb9cc8f625b (patch) | |
tree | 7d61274eefe2e9ada7a86d921e1a7001238bd2d5 | |
parent | a1b4e3b88a6987deed7bb7f1bd870b30eef1b475 (diff) | |
download | haskell-24fd303c1d5f8199556a9a119ad5bcb9cc8f625b.tar.gz |
elimiante a couple of warnings
-rw-r--r-- | ghc/rts/Sparks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/rts/Sparks.c b/ghc/rts/Sparks.c index 98d710280b..615d832e33 100644 --- a/ghc/rts/Sparks.c +++ b/ghc/rts/Sparks.c @@ -223,7 +223,7 @@ newSpark (StgRegTable *reg, StgClosure *p) #else StgInt -newSpark (StgRegTable *reg, StgClosure *p) +newSpark (StgRegTable *reg STG_UNUSED, StgClosure *p STG_UNUSED) { /* nothing */ return 1; |