]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - fs/ntfs/bitmap.h
Merge git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw
[linux-2.6-omap-h63xx.git] / fs / ntfs / bitmap.h
index bb50d6bc9212f88d611b5bfdf42102f6a2f439cf..72c9ad8be70d0b1d80b5e03d41737e9db10f20a9 100644 (file)
@@ -30,7 +30,7 @@
 #include "types.h"
 
 extern int __ntfs_bitmap_set_bits_in_run(struct inode *vi, const s64 start_bit,
-               const s64 count, const u8 value, const BOOL is_rollback);
+               const s64 count, const u8 value, const bool is_rollback);
 
 /**
  * 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,
                const s64 start_bit, const s64 count, const u8 value)
 {
        return __ntfs_bitmap_set_bits_in_run(vi, start_bit, count, value,
-                       FALSE);
+                       false);
 }
 
 /**