summaryrefslogtreecommitdiffstats
path: root/crypto/ec/ecp_nistp224.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-05-22 13:57:29 +0200
committerRichard Levitte <levitte@openssl.org>2018-05-23 11:57:04 +0200
commit8cc1dc3632ee685f7609c4923c7fb6e75154ea0d (patch)
tree2e61b06dc01c5185fb160cceb9910f0afd3ba906 /crypto/ec/ecp_nistp224.c
parent04225915731e913b4ad077aff6b6d7bbeb8b916b (diff)
Better error code when lacking __SIZEOF_INT128__
Fixes #6327 Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6328)
Diffstat (limited to 'crypto/ec/ecp_nistp224.c')
-rw-r--r--crypto/ec/ecp_nistp224.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec/ecp_nistp224.c b/crypto/ec/ecp_nistp224.c
index 5b8da3f817..364b7f246d 100644
--- a/crypto/ec/ecp_nistp224.c
+++ b/crypto/ec/ecp_nistp224.c
@@ -45,7 +45,7 @@ NON_EMPTY_TRANSLATION_UNIT
typedef __uint128_t uint128_t; /* nonstandard; implemented by gcc on 64-bit
* platforms */
# else
-# error "Need GCC 4.0 or later to define type uint128_t"
+# error "Your compiler doesn't appear to support 128-bit integer types"
# endif
typedef uint8_t u8;