"...git@developer.sourcefind.cn:OpenDAS/mmdetection3d.git" did not exist on "318499acd0c05fe1fee638d22186067a92a0684f"
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[]) { ...@@ -550,7 +550,8 @@ int main(int argc, char *argv[]) {
break; break;
case 'n': case 'n':
my_num = strtol(optarg, NULL, 0); my_num = strtol(optarg, NULL, 0);
assert(my_num > 255); fprintf(stderr, "my_num is: %d\n", my_num);
assert(my_num < 255);
break; break;
default: 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