Module: wine Branch: master Commit: 6ff83ba5913ffac5f1ac433ec4fef618f88bfbee URL: http://source.winehq.org/git/wine.git/?a=commit;h=6ff83ba5913ffac5f1ac433ec4...
Author: Vincent Povirk madewokherd+d41d@gmail.com Date: Thu Dec 4 21:33:56 2008 -0600
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);