changing the return status to EXIT_ON

This commit is contained in:
Diptanshu8 2017-06-28 07:01:32 +00:00
parent cf4aa9021d
commit a0047a9d3e

View File

@ -498,5 +498,5 @@ int main(int argc, char* argv[]){
int compile_ret = compile_params(api_options,argc);
int start_ret = api_start(*api_options);
return 1;
return start_ret ? EXIT_OK : EXIT_NO_CAPTIONS;
}