Skip to content
Snippets Groups Projects
Commit 7c8c258d authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #6625: return 0 on successful completion

parent 1618beac
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@
const char* DBusManagerImpl::SERVER_NAME = "org.sflphone.SFLphone";
int
void
DBusManagerImpl::exec()
{
......@@ -61,8 +61,6 @@ DBusManagerImpl::exec()
_debug ("Starting DBus event loop");
_dispatcher.enter();
return 1;
}
void
......
......@@ -46,7 +46,7 @@ class DBusManagerImpl
ConfigurationManager * getConfigurationManager() {
return _configurationManager;
};
int exec();
void exec();
void exit();
static const char* SERVER_NAME;
......
......@@ -206,7 +206,8 @@ main (int argc, char **argv)
}
Manager::instance().setDBusManager (&DBusManager::instance());
return DBusManager::instance().exec(); // UI Loop
DBusManager::instance().exec(); // UI Loop
return 0;
}
// EOF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment