cec: fixed error message in cec-client (unable to open the device on port ...)
authorLars Op den Kamp <lars@opdenkamp.eu>
Wed, 25 Jan 2012 13:20:11 +0000 (14:20 +0100)
committerLars Op den Kamp <lars@opdenkamp.eu>
Wed, 25 Jan 2012 13:20:11 +0000 (14:20 +0100)
src/testclient/main.cpp

index 14abf16b42add8709c9d7513039d914314f7abc5..4b13f3a78311d6af929064213b347f14774c5fb8 100644 (file)
@@ -1080,7 +1080,7 @@ int main (int argc, char *argv[])
   if (!parser->Open(g_strPort.c_str()))
   {
     CStdString strLog;
-    strLog.Format("unable to open the device on port %s");
+    strLog.Format("unable to open the device on port %s", g_strPort.c_str());
     PrintToStdOut(strLog);
     UnloadLibCec(parser);
     return 1;