diff options
author | Richard Levitte <levitte@openssl.org> | 2015-01-29 01:54:09 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-01-29 01:54:09 +0100 |
commit | c6ef15c494e49ecc505156c8063474b20e29ef6a (patch) | |
tree | accf01dca71f3c74a0c60aa879645cae8d99c2e4 /crypto/bn | |
parent | Fix various windows compilation issues (diff) | |
download | openssl-c6ef15c494e49ecc505156c8063474b20e29ef6a.tar.xz openssl-c6ef15c494e49ecc505156c8063474b20e29ef6a.zip |
clang on Linux x86_64 complains about unreachable code.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/bn')
-rw-r--r-- | crypto/bn/bntest.c | 1 | ||||
-rw-r--r-- | crypto/bn/exptest.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/crypto/bn/bntest.c b/crypto/bn/bntest.c index e03c808554..4d109d8935 100644 --- a/crypto/bn/bntest.c +++ b/crypto/bn/bntest.c @@ -353,7 +353,6 @@ int main(int argc, char *argv[]) ERR_load_crypto_strings(); ERR_print_errors_fp(stderr); EXIT(1); - return (1); } int test_add(BIO *bp) diff --git a/crypto/bn/exptest.c b/crypto/bn/exptest.c index bf96c5ba52..2da8dc2ffe 100644 --- a/crypto/bn/exptest.c +++ b/crypto/bn/exptest.c @@ -254,5 +254,4 @@ int main(int argc, char *argv[]) printf("ERROR\n"); #endif EXIT(1); - return (1); } |