Fix post-reformat errors preventing windows compilation

Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
Matt Caswell 2015-01-22 11:04:47 +00:00
parent a8fe430a0d
commit d2a0d72f33
2 changed files with 2 additions and 2 deletions

View 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;

View 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;