From 9c1b2ebe5045313f48c5bf8dfcb9e7210a7b7f10 Mon Sep 17 00:00:00 2001 From: Austin English Date: Tue, 11 Nov 2008 18:07:41 -0600 Subject: [PATCH] dinput/tests: fix a compiler warning --- dlls/dinput/tests/joystick.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/dinput/tests/joystick.c b/dlls/dinput/tests/joystick.c index 9bafd30..56da5a0 100644 --- a/dlls/dinput/tests/joystick.c +++ b/dlls/dinput/tests/joystick.c @@ -384,7 +384,7 @@ static BOOL CALLBACK EnumJoysticks( js.rgbButtons[9]>>7, js.rgbButtons[10]>>7, js.rgbButtons[11]>>7); if (strcmp(oldstate, curstate) != 0) { - trace(curstate); + trace(curstate, "%s"); strcpy(oldstate, curstate); } Sleep(100); -- 1.5.6.3