Commit b6aed3e5 authored by mccabe%netscape.com's avatar mccabe%netscape.com
Browse files

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

Thanks go to kherron@sgum.mci.com for the patch.
parent 70263da3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;