From 72cd126afbeae4fb60f4b5ef10e21133611cbafa Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Tue, 29 Jul 2008 21:40:07 +0000 Subject: [PATCH] Fix a typo in powerpc/Linux-only code; spotted by Jeroen Pulles --- rts/Adjustor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 1.7.10.4