diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-03-01 20:35:27 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-03-01 20:35:32 +0100 |
commit | 576319ef9d04ef48982bf9ebc0d5e9c84cfc45ca (patch) | |
tree | e2f51618515cc2ab1848d52328c5b616c4b0a662 /gui | |
parent | 77cf9ec80947da8d82f8a9d514c98595765454d6 (diff) |
main: don't comment out _exit(2)
Diffstat (limited to 'gui')
-rw-r--r-- | gui/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/main.cpp b/gui/main.cpp index efc0b12b..4b3e1f14 100644 --- a/gui/main.cpp +++ b/gui/main.cpp @@ -181,7 +181,7 @@ main(int argc, char** argv) TerminateProcess(GetCurrentProcess(), 0); #else // we have some atexit issues when not leaking bundles - //_exit(0); + _exit(0); #endif qDebug() << "exit: main()"; |