diff options
author | Richard Jones <rjones@redhat.com> | 2010-01-14 16:29:40 +0000 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-01-14 16:29:40 +0000 |
commit | 949d6e79ad81db208e5181d01f01b736a271c1e5 (patch) | |
tree | 151cb05838c240a5e40e1d8166ce664d17c95069 /hivex/hivex.c | |
parent | 8df82f709ab65a0cd4b28f1e51e27aa9cc702481 (diff) | |
download | libguestfs-949d6e79ad81db208e5181d01f01b736a271c1e5.tar.gz libguestfs-949d6e79ad81db208e5181d01f01b736a271c1e5.tar.xz libguestfs-949d6e79ad81db208e5181d01f01b736a271c1e5.zip |
hivex: Whitespace change.
Diffstat (limited to 'hivex/hivex.c')
-rw-r--r-- | hivex/hivex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hivex/hivex.c b/hivex/hivex.c index 13c3f868..0c09ace6 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 && \ |