Return EXIT_SUCCESS instead of 0 in main()

This commit is contained in:
Alexander Block 2018-01-08 18:41:25 +01:00
parent e3da73ebf8
commit e2a795fd84

View File

@ -624,7 +624,7 @@ int main(int argc, char *argv[])
/// 5. Now that settings and translations are available, ask user for data directory
// User language is set up: pick a data directory
if (!Intro::pickDataDirectory())
return 0;
return EXIT_SUCCESS;
/// 6. Determine availability of data directory and parse dash.conf
/// - Do not call GetDataDir(true) before this step finishes