Commit 1082b168 authored by Andre Przywara's avatar Andre Przywara
Browse files

pio: add missing return statement



main() should return 0 if execution was successful.
Signed-off-by: default avatarAndre Przywara <osp@andrep.de>
parent 7e8be239
......@@ -427,4 +427,6 @@ int main(int argc, char **argv)
exit(1);
}
}
return 0;
}
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