From e2a795fd84b53f9d96c7d6e784371238587d662e Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Mon, 8 Jan 2018 18:41:25 +0100 Subject: [PATCH] Return EXIT_SUCCESS instead of 0 in main() --- src/qt/dash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/dash.cpp b/src/qt/dash.cpp index 82d1976b3..e9d518dad 100644 --- a/src/qt/dash.cpp +++ b/src/qt/dash.cpp @@ -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