summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-22 11:04:47 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 14:09:37 +0000
commitd2a0d72f33e2cd81a5c81b29b05d6fdb2cc67ac2 (patch)
tree5888bf6a56451cf768ef7307c944bc121d01ee73 /crypto/bio
parenta8fe430a0d1ece596e66f27e09dc63ca19a2e2d6 (diff)
Fix post-reformat errors preventing windows compilation
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bss_dgram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bss_dgram.c b/crypto/bio/bss_dgram.c
index 78c437bcb5..885b969e05 100644
--- a/crypto/bio/bss_dgram.c
+++ b/crypto/bio/bss_dgram.c
@@ -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;