Module Name: src
Committed By: joerg
Date: Tue Jul 17 18:56:24 UTC 2018
Modified Files:
src/crypto/external/bsd/openssl/dist: e_os.h
Log Message:
Drop special case for clang/aarch64.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/crypto/external/bsd/openssl/dist/e_os.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/crypto/external/bsd/openssl/dist/e_os.h
diff -u src/crypto/external/bsd/openssl/dist/e_os.h:1.9 src/crypto/external/bsd/openssl/dist/e_os.h:1.10
--- src/crypto/external/bsd/openssl/dist/e_os.h:1.9 Mon Jul 16 00:47:54 2018
+++ src/crypto/external/bsd/openssl/dist/e_os.h Tue Jul 17 18:56:24 2018
@@ -32,8 +32,7 @@ extern "C" {
/*
* BIO_printf format modifier for [u]int64_t.
*/
-# if !(defined(__aarch64__) && defined(__clang__)) && (defined(__LP64__) || \
- (defined(__SIZEOF_LONG__) && __SIZEOF_LONG__ == 8))
+# if __SIZEOF_LONG__ - 0 == 8
# define BIO_PRI64 "l" /* 'll' does work "universally", but 'l' is
* here to shut -Wformat warnings in LP64... */
# else