From 8d50a47d499026b2a7b17309ef85816ee0096aae Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 9 Jun 2013 11:15:28 -0400 Subject: [PATCH] Require using the string format stuff. Fixes a linux compilation bug. --- src/RageInput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RageInput.cpp b/src/RageInput.cpp index 38fbc11d41..9b3be236c3 100644 --- a/src/RageInput.cpp +++ b/src/RageInput.cpp @@ -66,7 +66,7 @@ void RageInput::LoadDrivers() // If no input devices are loaded, the user won't be able to input anything. if( apDevices.size() == 0 ) - LOG->Warn( NO_INPUT_DEVICES_LOADED.GetValue() ); + LOG->Warn( "%s", NO_INPUT_DEVICES_LOADED.GetValue().c_str() ); } void RageInput::Update()