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:11:04 +0000 (14:11 +0000)
Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/bio/bss_dgram.c
ssl/d1_lib.c

index 1f0f160927428fa81d7f7a97a966a51e3ba05473..fcbae5f74a97855eb4f8659b85a89c57dd7a1117 100644 (file)
@@ -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;
index d2d3d2eed37733e62a84b606a5ca0871dda79aba..28457579b7ffcd0b76e785162f5c556a7d7ff2e4 100644 (file)
@@ -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;