dinput/tests: Fix string format warning.

This commit is contained in:
Vincent Povirk 2008-12-04 21:33:56 -06:00 committed by Alexandre Julliard
parent e4271d8736
commit 6ff83ba591
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ static BOOL CALLBACK EnumJoysticks(
js.rgbButtons[9]>>7, js.rgbButtons[10]>>7, js.rgbButtons[11]>>7); js.rgbButtons[9]>>7, js.rgbButtons[10]>>7, js.rgbButtons[11]>>7);
if (strcmp(oldstate, curstate) != 0) if (strcmp(oldstate, curstate) != 0)
{ {
trace(curstate); trace("%s\n", curstate);
strcpy(oldstate, curstate); strcpy(oldstate, curstate);
} }
Sleep(100); Sleep(100);