diff options
author | Garrett Brown <themagnificentmrb@gmail.com> | 2016-10-24 18:26:04 -0700 |
---|---|---|
committer | Garrett Brown <themagnificentmrb@gmail.com> | 2016-11-06 15:56:18 -0800 |
commit | 904f4b7fc41113a63a5456b11bcdb79237d03797 (patch) | |
tree | d5f52d74aa36745f7391bb6119feac85c523780a | |
parent | b3260310cdea81f2c9c0855d30abd45549f6d785 (diff) |
[peripherals] Fix incorrect number of format arguments
-rw-r--r-- | xbmc/peripherals/bus/PeripheralBus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/peripherals/bus/PeripheralBus.cpp b/xbmc/peripherals/bus/PeripheralBus.cpp index 72b7a37322..aaebc6213c 100644 --- a/xbmc/peripherals/bus/PeripheralBus.cpp +++ b/xbmc/peripherals/bus/PeripheralBus.cpp @@ -50,7 +50,7 @@ bool CPeripheralBus::InitializeProperties(CPeripheral& peripheral) // Ensure an add-on is present to translate input if (!g_peripherals.GetInstance().GetAddonWithButtonMap(&peripheral)) { - CLog::Log(LOGWARNING, "Button mapping add-on not present for %s (%s), skipping", peripheral.Location().c_str(), peripheral.DeviceName().c_str(), peripheral.VendorIdAsString(), peripheral.ProductIdAsString()); + CLog::Log(LOGWARNING, "Button mapping add-on not present for %s (%s), skipping", peripheral.Location().c_str(), peripheral.DeviceName().c_str()); return false; } } |