Fix to 9241 - Change types to unsigned to fix compile-time warnings.

Thanks go to kherron@sgum.mci.com for the patch.
This commit is contained in:
mccabe%netscape.com 1999-07-06 22:58:42 +00:00
parent 70263da324
commit b6aed3e5d7

View File

@ -91,9 +91,9 @@ struct align_prword {
#define ALIGN_OF(type) \
(((char*)&(((struct align_##type *)0)->a)) - ((char*)0))
int bpb;
unsigned int bpb;
static int Log2(int n)
static int Log2(unsigned int n)
{
int log2 = 0;