summaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/pcy_tree.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-01-29 01:54:09 +0100
committerRichard Levitte <levitte@openssl.org>2015-01-29 01:54:09 +0100
commitc6ef15c494e49ecc505156c8063474b20e29ef6a (patch)
treeaccf01dca71f3c74a0c60aa879645cae8d99c2e4 /crypto/x509v3/pcy_tree.c
parent7317192c645f24dfdb0c8340b871bc045454f8f4 (diff)
clang on Linux x86_64 complains about unreachable code.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/x509v3/pcy_tree.c')
-rw-r--r--crypto/x509v3/pcy_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/pcy_tree.c b/crypto/x509v3/pcy_tree.c
index 8d02092cde..d4b550e4cf 100644
--- a/crypto/x509v3/pcy_tree.c
+++ b/crypto/x509v3/pcy_tree.c
@@ -530,7 +530,7 @@ static int tree_prune(X509_POLICY_TREE *tree, X509_POLICY_LEVEL *curr)
}
}
- return 1;
+ /* Unreachable */
}