diff options
author | Ian Lynagh <igloo@earth.li> | 2008-07-29 21:40:07 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-07-29 21:40:07 +0000 |
commit | 72cd126afbeae4fb60f4b5ef10e21133611cbafa (patch) | |
tree | ecb094f30e270f0184677e89d39677a8263c6ee8 /rts/Adjustor.c | |
parent | bd4e5f3b233d33b946c56f5a34472e46b7ce86f1 (diff) | |
download | haskell-72cd126afbeae4fb60f4b5ef10e21133611cbafa.tar.gz |
Fix a typo in powerpc/Linux-only code; spotted by Jeroen Pulles
Diffstat (limited to 'rts/Adjustor.c')
-rw-r--r-- | rts/Adjustor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Adjustor.c b/rts/Adjustor.c index 40bc9ddd07..a4c6abeddb 100644 --- a/rts/Adjustor.c +++ b/rts/Adjustor.c @@ -716,7 +716,7 @@ TODO: Depending on how much allocation overhead stgMallocBytes uses for } else { - if((t == 'l' || t == 'L' || t == 'd') + if(t == 'l' || t == 'L' || t == 'd') { if(src_offset % 8) src_offset += 4; |