diff options
author | Richard Knutsson <ricknu-0@student.ltu.se> | 2006-10-01 02:27:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 03:39:19 -0400 |
commit | c49c31115067bc7c9a51ffdc735a515151dfa3eb (patch) | |
tree | 1ffeddacb5cf06fbdb8a1fc385eb9ee5f1c3174c /fs/ntfs/bitmap.h | |
parent | 6e21828743247270d09a86756a0c11702500dbfb (diff) |
[PATCH] fs/ntfs: Conversion to generic boolean
Conversion of booleans to: generic-boolean.patch (2006-08-23)
Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ntfs/bitmap.h')
-rw-r--r-- | fs/ntfs/bitmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ntfs/bitmap.h b/fs/ntfs/bitmap.h index bb50d6bc9212..72c9ad8be70d 100644 --- a/fs/ntfs/bitmap.h +++ b/fs/ntfs/bitmap.h | |||
@@ -30,7 +30,7 @@ | |||
30 | #include "types.h" | 30 | #include "types.h" |
31 | 31 | ||
32 | extern int __ntfs_bitmap_set_bits_in_run(struct inode *vi, const s64 start_bit, | 32 | extern int __ntfs_bitmap_set_bits_in_run(struct inode *vi, const s64 start_bit, |
33 | const s64 count, const u8 value, const BOOL is_rollback); | 33 | const s64 count, const u8 value, const bool is_rollback); |
34 | 34 | ||
35 | /** | 35 | /** |
36 | * ntfs_bitmap_set_bits_in_run - set a run of bits in a bitmap to a value | 36 | * ntfs_bitmap_set_bits_in_run - set a run of bits in a bitmap to a value |
@@ -48,7 +48,7 @@ static inline int ntfs_bitmap_set_bits_in_run(struct inode *vi, | |||
48 | const s64 start_bit, const s64 count, const u8 value) | 48 | const s64 start_bit, const s64 count, const u8 value) |
49 | { | 49 | { |
50 | return __ntfs_bitmap_set_bits_in_run(vi, start_bit, count, value, | 50 | return __ntfs_bitmap_set_bits_in_run(vi, start_bit, count, value, |
51 | FALSE); | 51 | false); |
52 | } | 52 | } |
53 | 53 | ||
54 | /** | 54 | /** |