mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-01 13:57:32 +00:00
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:
parent
70263da324
commit
b6aed3e5d7
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user