From fdc3ced983bb3efbb2ff4da52fdaef147f7f7ed2 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 22 Jan 2015 11:04:47 +0000 Subject: [PATCH] Fix post-reformat errors preventing windows compilation Reviewed-by: Tim Hudson --- crypto/bio/bss_dgram.c | 2 +- ssl/d1_lib.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/bio/bss_dgram.c b/crypto/bio/bss_dgram.c index 1f0f160927..fcbae5f74a 100644 --- a/crypto/bio/bss_dgram.c +++ b/crypto/bio/bss_dgram.c @@ -2052,7 +2052,7 @@ static void get_current_time(struct timeval *t) # ifdef __MINGW32__ now.ul -= 116444736000000000ULL; # else - now.ul -= 116444736000000000U I64; /* re-bias to 1/1/1970 */ + now.ul -= 116444736000000000UI64; /* re-bias to 1/1/1970 */ # endif t->tv_sec = (long)(now.ul / 10000000); t->tv_usec = ((int)(now.ul % 10000000)) / 10; diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c index d2d3d2eed3..28457579b7 100644 --- a/ssl/d1_lib.c +++ b/ssl/d1_lib.c @@ -525,7 +525,7 @@ static void get_current_time(struct timeval *t) # ifdef __MINGW32__ now.ul -= 116444736000000000ULL; # else - now.ul -= 116444736000000000U I64; /* re-bias to 1/1/1970 */ + now.ul -= 116444736000000000UI64; /* re-bias to 1/1/1970 */ # endif t->tv_sec = (long)(now.ul / 10000000); t->tv_usec = ((int)(now.ul % 10000000)) / 10; -- 2.34.1