From 3965f2ecb245df966e74a43c75ca88ad946f219a Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Thu, 4 Dec 2008 21:33:56 -0600 Subject: [PATCH] dinput/tests: fix string format 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..b318323 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("%s\n", curstate); strcpy(oldstate, curstate); } Sleep(100); -- 1.6.0.4