Change unsigned to size_t

This commit is contained in:
h5p9sl 2019-10-12 02:01:43 -06:00
parent a9cfd5e8f6
commit 6eae3bc0dc
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ int main() {
);
// Convert 'out' to string
for (unsigned i = 0; i < out.size(); i++) {
for (size_t i = 0; i < out.size(); i++) {
result << std::hex << (int)out[i];
}
std::cout << result.str() << std::endl;