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:
wchang0222%aol.com 2004-04-29 00:35:27 +00:00
parent 409ad99e6f
commit 433ce78f52

View File

@ -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))