From 9e66050f3a7e7c01cf8983d3162f101069254914 Mon Sep 17 00:00:00 2001 From: warped-rudi Date: Mon, 17 Sep 2012 17:22:00 +0200 Subject: [PATCH] testclient: fixed vendor id always shown as zero --- 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 84133a9..707d7d6 100644 --- a/src/testclient/main.cpp +++ b/src/testclient/main.cpp @@ -654,7 +654,7 @@ bool ProcessCommandVEN(ICECAdapter *parser, const string &command, string &argum if (iDev >= 0 && iDev < 15) { uint64_t iVendor = parser->GetDeviceVendorId((cec_logical_address) iDev); - PrintToStdOut("vendor id: %06x", iVendor); + PrintToStdOut("vendor id: %06llx", iVendor); return true; } } -- 2.34.1