diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-30 23:09:20 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-30 23:09:20 +0000 |
commit | e4c3642c175326dc960999caa74798de8c703ab5 (patch) | |
tree | a78bfa0e539dcdbb024ed1acb9fba333dfacc228 /e2fsprogs/ext2fs | |
parent | 45d22dce9fb986e738313cd9f1f246255db097e8 (diff) | |
download | busybox-w32-e4c3642c175326dc960999caa74798de8c703ab5.tar.gz busybox-w32-e4c3642c175326dc960999caa74798de8c703ab5.tar.bz2 busybox-w32-e4c3642c175326dc960999caa74798de8c703ab5.zip |
hopefully the last of the annoying signed/unsigned and mixed type errors
git-svn-id: svn://busybox.net/trunk/busybox@13733 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'e2fsprogs/ext2fs')
-rw-r--r-- | e2fsprogs/ext2fs/ext2fs_inline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e2fsprogs/ext2fs/ext2fs_inline.c b/e2fsprogs/ext2fs/ext2fs_inline.c index 2fa9a9ed2..73d393d20 100644 --- a/e2fsprogs/ext2fs/ext2fs_inline.c +++ b/e2fsprogs/ext2fs/ext2fs_inline.c | |||
@@ -178,7 +178,7 @@ __u32 ext2fs_swab32(__u32 val) | |||
178 | 178 | ||
179 | int ext2fs_find_first_bit_set(void * addr, unsigned size) | 179 | int ext2fs_find_first_bit_set(void * addr, unsigned size) |
180 | { | 180 | { |
181 | char *cp = (unsigned char *) addr; | 181 | unsigned char *cp = (unsigned char *) addr; |
182 | int res = 0, d0; | 182 | int res = 0, d0; |
183 | 183 | ||
184 | if (!size) | 184 | if (!size) |