fixed compilation errors
authorLars Op den Kamp <lars@opdenkamp.eu>
Fri, 5 Apr 2013 08:50:06 +0000 (10:50 +0200)
committerLars Op den Kamp <lars@opdenkamp.eu>
Fri, 5 Apr 2013 08:50:06 +0000 (10:50 +0200)
src/lib/CECProcessor.cpp
src/lib/implementations/CECCommandHandler.cpp

index 2aa81cadfdecd719db27d43976ad374a3510e705..a44b81eb6a314167395916af458c7ab3d26c91f4 100644 (file)
@@ -480,7 +480,7 @@ void CCECProcessor::TransmitAbort(cec_logical_address source, cec_logical_addres
 void CCECProcessor::ProcessCommand(const cec_command &command)
 {
   // log the command
-  m_libcec->AddLog(CEC_LOG_TRAFFIC, CCECTypeUtils::ToString(command).c_str());
+  m_libcec->AddLog(CEC_LOG_TRAFFIC, ToString(command).c_str());
 
   // find the initiator
   CCECBusDevice *device = m_busDevices->At(command.initiator);
index 1c1b1ff08c3b975e5a7607fc5afe34c9d2fb0039..89b5b7e8ae9b0ca68c2c77690e8165730dd89851 100644 (file)
@@ -1293,6 +1293,6 @@ void CCECCommandHandler::RequestEmailFromCustomer(const cec_command& command)
     m_logsRequested.insert(make_pair(command.opcode, commands));
   }
 
-  LIB_CEC->AddLog(CEC_LOG_NOTICE, "Unmapped code detected. Please send an email to support@pulse-eight.com with the following details, and if you pressed a key, tell us which one you pressed, and we'll add support for this it.\nCEC command: %s\nVendor ID: %s (%06x)", CCECTypeUtils::ToString(command).c_str(), CCECTypeUtils::ToString(m_vendorId), m_vendorId);
+  LIB_CEC->AddLog(CEC_LOG_NOTICE, "Unmapped code detected. Please send an email to support@pulse-eight.com with the following details, and if you pressed a key, tell us which one you pressed, and we'll add support for this it.\nCEC command: %s\nVendor ID: %s (%06x)", ToString(command).c_str(), ToString(m_vendorId), m_vendorId);
 }