summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRainer Keller <rainer.keller@nokia.com>2011-08-05 10:40:15 +0200
committerRainer Keller <rainer.keller@nokia.com>2011-08-05 10:41:19 +0200
commit00f66c1744d9508bd327f154ff196fffb0b479bd (patch)
treefe7cb91c12260a70625235e6f41af2a4e7bf1bc4 /src
parent84378e1726c929b16ed6c7b606293344c6b8f8b8 (diff)
Fix error message
Diffstat (limited to 'src')
-rw-r--r--src/other/applicationmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other/applicationmanager.cpp b/src/other/applicationmanager.cpp
index c23f82c..8f9778c 100644
--- a/src/other/applicationmanager.cpp
+++ b/src/other/applicationmanager.cpp
@@ -81,7 +81,7 @@ ApplicationManager::ApplicationManager(const VersionStruct &simulatorVersion, QO
mServer = new QLocalServer();
QLocalServer::removeServer(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString());
if (!mServer->listen(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString())) {
- qFatal("Could not open mServer");
+ qFatal("Could not create listening unix domain socket at %s", qPrintable(SIMULATOR_DISPLAY_SERVERNAME + mVersion.toString()));
}
connect(mServer, SIGNAL(newConnection()), this, SLOT(handleConnection()));
connect(this, SIGNAL(applicationRegistered(Application*)), this, SLOT(registerApplication(Application*)));