aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-12-20 09:42:36 -0500
committerJack Lloyd <[email protected]>2017-12-20 09:42:36 -0500
commitc556cac5b6fc366502ed7f255fcc99918ce152c8 (patch)
treec4ab26edd10dbf9ee3de8753cf6bb3b0763f1bd3 /src/tests
parent752c549f8a56b01a77700e13f04988f52fac4d79 (diff)
Fix some shadow and unused parameter warnings
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test_x509_path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_x509_path.cpp b/src/tests/test_x509_path.cpp
index 7ea0f5b04..49f937475 100644
--- a/src/tests/test_x509_path.cpp
+++ b/src/tests/test_x509_path.cpp
@@ -555,7 +555,7 @@ std::vector<Test::Result> BSI_Path_Validation_Tests::run()
* the validation function may be relevant, i.e. if issuer DNs are
* ambiguous.
*/
- for (int i = 0; i < 16; i++)
+ for (size_t r = 0; r < 16; r++)
{
std::random_shuffle(++(certs.begin()), certs.end());