From 949d6e79ad81db208e5181d01f01b736a271c1e5 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Thu, 14 Jan 2010 16:29:40 +0000 Subject: [PATCH] hivex: Whitespace change. --- hivex/hivex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hivex/hivex.c b/hivex/hivex.c index 13c3f86..0c09ace 100644 --- a/hivex/hivex.c +++ b/hivex/hivex.c @@ -105,7 +105,7 @@ struct hive_h { #define BITMAP_SET(bitmap,off) (bitmap[(off)>>5] |= 1 << (((off)>>2)&7)) #define BITMAP_CLR(bitmap,off) (bitmap[(off)>>5] &= ~ (1 << (((off)>>2)&7))) #define BITMAP_TST(bitmap,off) (bitmap[(off)>>5] & (1 << (((off)>>2)&7))) -#define IS_VALID_BLOCK(h,off) \ +#define IS_VALID_BLOCK(h,off) \ (((off) & 3) == 0 && \ (off) >= 0x1000 && \ (off) < (h)->size && \ -- 1.8.3.1