437 _INLINE_ int ext2fs_find_first_bit_set(void * addr, unsigned size)<br>    439 {<br>    440         char    *cp = (unsigned char *) addr;<br>    441         int     res = 0, d0;<br>    442<br>    443         if (!size)<br>
    444                 return 0;<br>    445<br>    446         while ((size > res) && (*cp == 0)) {<br>    447                 cp++;<br>    448                 res += 8;<br>    449         }<br>    450         d0 = ffs(*cp);<br>
    451         if (d0 == 0)<br>    452                 return size;<br>    453<br>    454         return res + d0 - 1;<br>    455 }<br><br><br><div class="gmail_quote">On Mon, Apr 7, 2008 at 4:54 PM, Carlo Wood <<a href="mailto:carlo@alinoe.com">carlo@alinoe.com</a>> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d"><br>
On Mon, Apr 07, 2008 at 12:11:18PM -0300, Ranieri Oliveira wrote:<br>
> /usr/include/ext2fs/bitops.h:440: error: invalid conversion from `unsigned<br>
> char*' to `char*'<br>
<br>
</div>What is on line 440?<br>
<br>
Please keep <a href="mailto:ext3-users@redhat.com">ext3-users@redhat.com</a> in the CC.<br>
<font color="#888888"><br>
--<br>
</font><div><div></div><div class="Wj3C7c">Carlo Wood <<a href="mailto:carlo@alinoe.com">carlo@alinoe.com</a>><br>
<br>
--~--~---------~--~----~------------~-------~--~----~<br>
To post to this group, send email to <a href="mailto:ext3grep@googlegroups.com">ext3grep@googlegroups.com</a><br>
To unsubscribe from this group, send email to <a href="mailto:ext3grep-unsubscribe@googlegroups.com">ext3grep-unsubscribe@googlegroups.com</a><br>
For more options, visit this group at <a href="http://groups.google.com/group/ext3grep?hl=en" target="_blank">http://groups.google.com/group/ext3grep?hl=en</a><br>
-~----------~----~----~----~------~----~------~--~---<br>
<br>
</div></div></blockquote></div><br>