diff options
-rw-r--r-- | src/selftest/selftest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selftest/selftest.cpp b/src/selftest/selftest.cpp index 72e49cfbd..4d2837dac 100644 --- a/src/selftest/selftest.cpp +++ b/src/selftest/selftest.cpp @@ -53,7 +53,7 @@ algorithm_kat(const SCAN_Name& algo_name, SymmetricKey key(search_map(vars, std::string("key"))); InitializationVector iv(search_map(vars, std::string("iv"))); - for(u32bit i = 0; i != providers.size(); ++i) + for(size_t i = 0; i != providers.size(); ++i) { const std::string provider = providers[i]; |