diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2015-12-29 18:11:06 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-12-29 20:47:40 +0100 |
commit | 6ca2aa1284a5e82df0193d2727941420361bc50f (patch) | |
tree | dc6a6058e3a8cdb72c3da086d23f68fe5df8b5d1 /ext2fs/hyper.c | |
parent | 05c3ffac543052c8d0b171a5f77bb977d5316a61 (diff) |
fix compiler warnings in hurd/ext2fs
ext2fs: Fix compiler warnings.
* ext2fs/balloc.c: Use unsigned char instead of char.
* ext2fs/bitmap.c Use unsigned char for bitmaps.
* ext2fs/dir.c: Fix format.
* ext2fs/ext2fs.h: Use unsigned char for bitmaps.
* ext2fs/ialloc.c: Use unsigned char for bitmaps. Fix format string in
ext2_warning.
* ext2fs/pager.c: Fix format string in ext2_warning and ext2_error.
Diffstat (limited to 'ext2fs/hyper.c')
-rw-r--r-- | ext2fs/hyper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/hyper.c b/ext2fs/hyper.c index 5f288bf1..91d9d12f 100644 --- a/ext2fs/hyper.c +++ b/ext2fs/hyper.c @@ -24,7 +24,7 @@ #include "ext2fs.h" vm_address_t zeroblock; -char *modified_global_blocks; +unsigned char *modified_global_blocks; static void allocate_mod_map (void) |