diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-11-22 10:43:09 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-11-22 10:43:31 +0100 |
commit | 89488e43b27a97ffdc7213e38d0ea1584a81c571 (patch) | |
tree | 3695b7b9c360eaed9699d8b33f842cb1e5460015 /desktop | |
parent | 8c991b910af6fdf09fddfc32ec8ea6ecd657ebe8 (diff) |
IPC_STATUS_2ND_OFFICE -> BS_TERMINATE -> EXIT_SUCCES rather than EXIT_FAILURE
Change-Id: Ic2dd861de07f90676bb263c7ea6c00c2b4335de5
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/app.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index 622f5ae123d6..547ed4f57f6f 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -1385,7 +1385,7 @@ int Desktop::Main() BootstrapStatus eStatus = GetBootstrapStatus(); if (eStatus == BS_TERMINATE) { - return EXIT_FAILURE; + return EXIT_SUCCESS; } // Detect desktop environment - need to do this as early as possible |