testclient: fixed vendor id always shown as zero
authorwarped-rudi <r.ihle@s-t.de>
Mon, 17 Sep 2012 15:22:00 +0000 (17:22 +0200)
committerwarped-rudi <r.ihle@s-t.de>
Mon, 17 Sep 2012 15:35:40 +0000 (17:35 +0200)
src/testclient/main.cpp

index 84133a931c5b7ceca64591ecdfe85ed646123bd0..707d7d686ac0f36ccb2a219fc0597fe532bc82c1 100644 (file)
@@ -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;
       }
     }