diff options
author | lloyd <[email protected]> | 2010-10-12 20:06:20 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-12 20:06:20 +0000 |
commit | ab1f661083053df745daf1e1b8f4859f5a92065d (patch) | |
tree | 0cc3fcfe4f3301f0507671f470fe3afff7872bcb | |
parent | b29e17a4ea70bcabb7d8eeb441bb70fd0c87b185 (diff) |
size_t in selftest
-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]; |