Index: nss/lib/freebl/unix_rand.c |
=================================================================== |
--- nss/lib/freebl/unix_rand.c (revision 203524) |
+++ nss/lib/freebl/unix_rand.c (working copy) |
@@ -33,7 +33,7 @@ |
static size_t CopyLowBits(void *dst, size_t dstlen, void *src, size_t srclen) |
{ |
union endianness { |
- int32 i; |
+ PRInt32 i; |
char c[4]; |
} u; |
@@ -601,7 +601,7 @@ |
static size_t |
GetHighResClock(void *buf, size_t maxbytes) |
{ |
- bigtime_t bigtime; /* Actually an int64 */ |
+ bigtime_t bigtime; /* Actually a int64 */ |
bigtime = real_time_clock_usecs(); |
return CopyLowBits(buf, maxbytes, &bigtime, sizeof(bigtime)); |
@@ -611,7 +611,7 @@ |
GiveSystemInfo(void) |
{ |
system_info *info = NULL; |
- int32 val; |
+ PRInt32 val; |
get_system_info(info); |
if (info) { |
val = info->boot_time; |