Bruno Jesus : dinput: Remove trailing space from debug string.
Module: wine Branch: master Commit: 80fca2d86d2dfb8de9493736955e190b43ba7859 URL: http://source.winehq.org/git/wine.git/?a=commit;h=80fca2d86d2dfb8de949373695... Author: Bruno Jesus <00cpxxx(a)gmail.com> Date: Mon Sep 12 16:07:57 2016 -0300 dinput: Remove trailing space from debug string. Spotted by Elias Vanderstuyft. Signed-off-by: Bruno Jesus <00cpxxx(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/dinput/dinput_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dinput/dinput_main.c b/dlls/dinput/dinput_main.c index 98ab273..2933eb1 100644 --- a/dlls/dinput/dinput_main.c +++ b/dlls/dinput/dinput_main.c @@ -195,7 +195,7 @@ static const char *_dump_DIDEVTYPE_value(DWORD dwDevType, DWORD dwVersion) } else { switch (dwDevType) { case DI8DEVCLASS_ALL: return "All devices"; - case DI8DEVCLASS_POINTER : return "DI8DEVCLASS_POINTER "; + case DI8DEVCLASS_POINTER: return "DI8DEVCLASS_POINTER"; case DI8DEVCLASS_KEYBOARD: return "DI8DEVCLASS_KEYBOARD"; case DI8DEVCLASS_DEVICE: return "DI8DEVCLASS_DEVICE"; case DI8DEVCLASS_GAMECTRL: return "DI8DEVCLASS_GAMECTRL";
participants (1)
-
Alexandre Julliard