diff options
author | Theodore Ts'o <tytso@mit.edu> | 1997-04-29 17:48:10 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 1997-04-29 17:48:10 +0000 |
commit | 521e36857227b21e7ab47b0a97f788d2af9f9717 (patch) | |
tree | 21ca3452b25bd1310df4c2d8cebbbc8ed8a7b217 /lib/ext2fs/bitops.h | |
parent | 24757fa0468170e1420087eef36219650dba8c07 (diff) | |
download | e2fsprogs-521e36857227b21e7ab47b0a97f788d2af9f9717.tar.gz |
Many files:
Checked in e2fsprogs 1.08.
Diffstat (limited to 'lib/ext2fs/bitops.h')
-rw-r--r-- | lib/ext2fs/bitops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ext2fs/bitops.h b/lib/ext2fs/bitops.h index 24bd5a74..a20d3955 100644 --- a/lib/ext2fs/bitops.h +++ b/lib/ext2fs/bitops.h @@ -353,7 +353,7 @@ _INLINE_ int ext2fs_test_generic_bitmap(ext2fs_generic_bitmap bitmap, blk_t bitno) { if ((bitno < bitmap->start) || (bitno > bitmap->end)) { - ext2fs_warn_bitmap2(bitmap, EXT2FS_UNMARK_ERROR, bitno); + ext2fs_warn_bitmap2(bitmap, EXT2FS_TEST_ERROR, bitno); return 0; } return ext2fs_test_bit(bitno - bitmap->start, bitmap->bitmap); |