mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-02 06:22:20 +00:00
Fixing BeOS bustage - use uint32 instead of u_int32_t.
This commit is contained in:
parent
ca0f24d1b5
commit
6ea11b87bc
@ -57,11 +57,11 @@ typedef union {
|
||||
double value;
|
||||
struct {
|
||||
#ifdef IS_LITTLE_ENDIAN
|
||||
u_int32_t lsw;
|
||||
u_int32_t msw;
|
||||
uint32 lsw;
|
||||
uint32 msw;
|
||||
#else
|
||||
u_int32_t msw;
|
||||
u_int32_t lsw;
|
||||
uint32 msw;
|
||||
uint32 lsw;
|
||||
#endif
|
||||
} parts;
|
||||
} js_ieee_double_shape_type;
|
||||
|
Loading…
x
Reference in New Issue
Block a user