fix signed/unsigned char pointers

This commit is contained in:
Mike Frysinger 2005-06-11 00:50:59 +00:00
parent 7ffce0c119
commit a34f99930d

View File

@ -320,8 +320,8 @@ _INLINE_ __u32 ext2fs_swab32(__u32 val)
#if !defined(_EXT2_HAVE_ASM_FINDBIT_) #if !defined(_EXT2_HAVE_ASM_FINDBIT_)
_INLINE_ int ext2fs_find_first_bit_set(void * addr, unsigned size) _INLINE_ int ext2fs_find_first_bit_set(void * addr, unsigned size)
{ {
char *cp = (unsigned char *) addr; unsigned char *cp = (unsigned char *) addr;
int res = 0, d0; int res = 0, d0;
if (!size) if (!size)
return 0; return 0;
@ -333,7 +333,7 @@ _INLINE_ int ext2fs_find_first_bit_set(void * addr, unsigned size)
d0 = ffs(*cp); d0 = ffs(*cp);
if (d0 == 0) if (d0 == 0)
return size; return size;
return res + d0 - 1; return res + d0 - 1;
} }