From 78905f35d1cb9dc7b49f78930c621b3e0097e366 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 23 Oct 2016 13:19:07 +0200 Subject: [PATCH] exit(0); --- linuxdeployqt/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linuxdeployqt/main.cpp b/linuxdeployqt/main.cpp index ddeaa48..5adea1b 100644 --- a/linuxdeployqt/main.cpp +++ b/linuxdeployqt/main.cpp @@ -30,6 +30,7 @@ #include #include "../shared/shared.h" #include +#include int main(int argc, char **argv) { @@ -212,7 +213,6 @@ int main(int argc, char **argv) exit(result); } } - - return 0; + exit(0); }