From: Richard Jones Date: Thu, 14 Jan 2010 16:29:40 +0000 (+0000) Subject: hivex: Whitespace change. X-Git-Tag: 1.1.0~65 X-Git-Url: http://git.annexia.org/?p=hivex.git;a=commitdiff_plain;h=a8e03086f45a743b108ba5302b4d91d2b99317ad;ds=sidebyside hivex: Whitespace change. --- 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 && \