mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Bugzilla bug 123403: LL_INIT should use PR_UINT32 because the hi and lo
fields of the PRInt64 structure are PRUint32. The patch is contributed by timeless@bemail.org. r=wtc.
This commit is contained in:
parent
409ad99e6f
commit
433ce78f52
@ -202,9 +202,9 @@ NSPR_API(PRUint64) LL_MaxUint(void);
|
||||
#else /* !HAVE_LONG_LONG */
|
||||
|
||||
#ifdef IS_LITTLE_ENDIAN
|
||||
#define LL_INIT(hi, lo) {PR_INT32(lo), PR_INT32(hi)}
|
||||
#define LL_INIT(hi, lo) {PR_UINT32(lo), PR_UINT32(hi)}
|
||||
#else
|
||||
#define LL_INIT(hi, lo) {PR_INT32(hi), PR_INT32(lo)}
|
||||
#define LL_INIT(hi, lo) {PR_UINT32(hi), PR_UINT32(lo)}
|
||||
#endif
|
||||
|
||||
#define LL_IS_ZERO(a) (((a).hi == 0) && ((a).lo == 0))
|
||||
|
Loading…
x
Reference in New Issue
Block a user