Commit 41efa772 authored by Hejing Li's avatar Hejing Li Committed by Antoine Kaufmann
Browse files

fix assertion

parent 398e614b
......@@ -550,7 +550,8 @@ int main(int argc, char *argv[]) {
break;
case 'n':
my_num = strtol(optarg, NULL, 0);
assert(my_num > 255);
fprintf(stderr, "my_num is: %d\n", my_num);
assert(my_num < 255);
break;
default:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment