Skip to content

Commit

Permalink
Return EXIT_SUCCESS instead of 0 in main
Browse files Browse the repository at this point in the history
  • Loading branch information
husamalhomsi authored Dec 15, 2019
1 parent a9e3e70 commit abf3530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ int main( int argc, char * * argv )
}
else // Exit
{
return 0;
return EXIT_SUCCESS;
}
}

Expand Down

0 comments on commit abf3530

Please sign in to comment.