From 904f4b7fc41113a63a5456b11bcdb79237d03797 Mon Sep 17 00:00:00 2001 From: Garrett Brown Date: Mon, 24 Oct 2016 18:26:04 -0700 Subject: [peripherals] Fix incorrect number of format arguments --- xbmc/peripherals/bus/PeripheralBus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- cgit v1.2.3