diff --git a/[refs] b/[refs] index 4387a84e8090..90de11705ddd 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: a0aa7d0639277f375989071fb52a7ce78beeef97 +refs/heads/master: 4610a6bea7742ab34e40dcb776bd3feb52da10d6 diff --git a/trunk/fs/ext2/bitmap.c b/trunk/fs/ext2/bitmap.c index 20145b74623f..e9983a0dd396 100644 --- a/trunk/fs/ext2/bitmap.c +++ b/trunk/fs/ext2/bitmap.c @@ -7,8 +7,12 @@ * Universite Pierre et Marie Curie (Paris VI) */ +#ifdef EXT2FS_DEBUG + #include +#include "ext2.h" + static int nibblemap[] = {4, 3, 3, 2, 3, 2, 2, 1, 3, 2, 2, 1, 2, 1, 1, 0}; unsigned long ext2_count_free (struct buffer_head * map, unsigned int numchars) @@ -23,3 +27,6 @@ unsigned long ext2_count_free (struct buffer_head * map, unsigned int numchars) nibblemap[(map->b_data[i] >> 4) & 0xf]; return (sum); } + +#endif /* EXT2FS_DEBUG */ +