Skip to content

Commit

Permalink
Small code change
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jun 11, 2020
1 parent 87e3c1d commit bae9f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pconvert/pconvert.c
Expand Up @@ -902,7 +902,7 @@ ERROR_T pbenchmark(int argc, char **argv) {
sprintf(label, "%s %s %s", algorithms[index], compression_s[index_j], use_opencl_s[index_k]);
printf("%-42s ", label);
fflush(stdout);
for(index_c = 0; index_c < count; index_c++) {
for(index_c = 0; index_c < (size_t) count; index_c++) {
result = pbenchmark_algorithm(
argv[2], algorithms[index], NULL, "alpha",
compression[index_j], 0, use_opencl[index_k],
Expand Down

0 comments on commit bae9f9d

Please sign in to comment.