From b5e7f745432c989c382b7729d64ea4a45c9dd49b Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Wed, 25 Jan 2012 14:20:11 +0100 Subject: [PATCH] cec: fixed error message in cec-client (unable to open the device on port ...) --- src/testclient/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testclient/main.cpp b/src/testclient/main.cpp index 14abf16..4b13f3a 100644 --- a/src/testclient/main.cpp +++ b/src/testclient/main.cpp @@ -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; -- 2.34.1