diff options
author | "Robert P. J. Day" | 2006-07-01 15:09:17 +0000 |
---|---|---|
committer | "Robert P. J. Day" | 2006-07-01 15:09:17 +0000 |
commit | 7ccb65f3a4f5c84d010978d450df57d3c1b13297 (patch) | |
tree | 1a8ad50d798ce0a176c20b817d53ffaead21b14c /e2fsprogs/ext2fs/icount.c | |
parent | d35ef0f66643f2bc43bd7070df0356e0b064b755 (diff) | |
download | busybox-7ccb65f3a4f5c84d010978d450df57d3c1b13297.zip busybox-7ccb65f3a4f5c84d010978d450df57d3c1b13297.tar.gz |
Yet more "#if 0" content removed.
Diffstat (limited to 'e2fsprogs/ext2fs/icount.c')
-rw-r--r-- | e2fsprogs/ext2fs/icount.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/e2fsprogs/ext2fs/icount.c b/e2fsprogs/ext2fs/icount.c index 7ae2a5c..7d0d63c 100644 --- a/e2fsprogs/ext2fs/icount.c +++ b/e2fsprogs/ext2fs/icount.c @@ -112,10 +112,6 @@ errcode_t ext2fs_create_icount2(ext2_filsys fs, int flags, unsigned int size, } bytes = (size_t) (icount->size * sizeof(struct ext2_icount_el)); -#if 0 - printf("Icount allocated %d entries, %d bytes.\n", - icount->size, bytes); -#endif retval = ext2fs_get_mem(bytes, &icount->list); if (retval) goto errout; @@ -172,9 +168,6 @@ static struct ext2_icount_el *insert_icount_el(ext2_icount_t icount, } if (new_size < (icount->size + 100)) new_size = icount->size + 100; -#if 0 - printf("Reallocating icount %d entries...\n", new_size); -#endif retval = ext2fs_resize_mem((size_t) icount->size * sizeof(struct ext2_icount_el), (size_t) new_size * @@ -224,15 +217,9 @@ static struct ext2_icount_el *get_icount_el(ext2_icount_t icount, icount->cursor = 0; if (ino == icount->list[icount->cursor].ino) return &icount->list[icount->cursor++]; -#if 0 - printf("Non-cursor get_icount_el: %u\n", ino); -#endif low = 0; high = (int) icount->count-1; while (low <= high) { -#if 0 - mid = (low+high)/2; -#else if (low == high) mid = low; else { @@ -249,7 +236,6 @@ static struct ext2_icount_el *get_icount_el(ext2_icount_t icount, (highval - lowval); mid = low + ((int) (range * (high-low))); } -#endif if (ino == icount->list[mid].ino) { icount->cursor = mid+1; return &icount->list[mid]; |