From: Ian Lynagh Date: Tue, 29 Jul 2008 21:40:07 +0000 (+0000) Subject: Fix a typo in powerpc/Linux-only code; spotted by Jeroen Pulles X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=72cd126afbeae4fb60f4b5ef10e21133611cbafa;hp=bd4e5f3b233d33b946c56f5a34472e46b7ce86f1;p=ghc-hetmet.git Fix a typo in powerpc/Linux-only code; spotted by Jeroen Pulles --- diff --git a/rts/Adjustor.c b/rts/Adjustor.c index 40bc9dd..a4c6abe 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;