Fix compiler warning about sign mismatch

This commit is contained in:
Jason Rhinelander 2023-04-28 16:20:17 -03:00
parent cab17962d1
commit 186db9ab07
No known key found for this signature in database
GPG Key ID: C4992CE7A88D4262
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ int import_from_file(
int progress_interval = 10;
// NOTE: use of NUM_BLOCKS_PER_CHUNK is a placeholder in case multi-block chunks are
// later supported.
for (int chunk_ind = 0; chunk_ind < NUM_BLOCKS_PER_CHUNK; ++chunk_ind) {
for (size_t chunk_ind = 0; chunk_ind < NUM_BLOCKS_PER_CHUNK; ++chunk_ind) {
++h;
if ((h - 1) % display_interval == 0) {
std::cout << refresh_string;