Fix post-reformat errors preventing windows compilation
authorMatt Caswell <matt@openssl.org>
Thu, 22 Jan 2015 11:04:47 +0000 (11:04 +0000)
committerMatt Caswell <matt@openssl.org>
Thu, 22 Jan 2015 14:09:37 +0000 (14:09 +0000)
Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/bio/bss_dgram.c
ssl/d1_lib.c

index 78c437bcb568144c5dd1f3fbf47afa5e91c44ada..885b969e057036bdd7dcd36e79e93991b7fcff74 100644 (file)
@@ -2055,7 +2055,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;
index e75d049dbb9e8f3f6a16134b4fd0273671decc72..4ca6bb31a98b14480ad9954f39252e3e3c3ec29a 100644 (file)
@@ -528,7 +528,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;