Skip to content

Commit

Permalink
addressed a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusRabe committed May 22, 2018
1 parent 7bd6720 commit f70ecf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Expand Up @@ -108,7 +108,7 @@ int main(int argc, const char* argv[]) {
print_usage(argv[0]);
return 1;
}
options->hard_decision_limit = (int) strtol(argv[i+1], NULL, 0);
options->hard_decision_limit = (unsigned) strtol(argv[i+1], NULL, 0);
assert(options->hard_decision_limit < 10000000);
i++;
break;
Expand Down

0 comments on commit f70ecf4

Please sign in to comment.