From 4abe07430f842af036d0daf06f4a56db3c4e739b Mon Sep 17 00:00:00 2001 From: "bryner%uiuc.edu" Date: Mon, 16 Jul 2001 06:04:25 +0000 Subject: [PATCH] Fixing BeOS bustage - use uint32 instead of u_int32_t. --- js/src/jsnum.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/src/jsnum.h b/js/src/jsnum.h index c82fd652a92..d5146eec057 100644 --- a/js/src/jsnum.h +++ b/js/src/jsnum.h @@ -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;