Module: wine Branch: master Commit: ca8c1103af3ef4520893c69b9cb5e24bb853bfeb URL: http://source.winehq.org/git/wine.git/?a=commit;h=ca8c1103af3ef4520893c69b9c...
Author: Francois Gouget fgouget@free.fr Date: Sun Sep 18 19:44:01 2011 +0200
dinput: Fix printing NULL strings.
---
dlls/dinput/dinput_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/dinput/dinput_main.c b/dlls/dinput/dinput_main.c index 028d901..373b990 100644 --- a/dlls/dinput/dinput_main.c +++ b/dlls/dinput/dinput_main.c @@ -883,7 +883,7 @@ static HRESULT WINAPI IDirectInput8AImpl_EnumDevicesBySemantics( int i, j;
- FIXME("(this=%p,%s,%p,%p,%p,%04x): semi-stub\n", This, ptszUserName, lpdiActionFormat, + FIXME("(this=%p,%s,%p,%p,%p,%04x): semi-stub\n", This, debugstr_a(ptszUserName), lpdiActionFormat, lpCallback, pvRef, dwFlags); #define X(x) if (dwFlags & x) FIXME("\tdwFlags |= "#x"\n"); X(DIEDBSFL_ATTACHEDONLY)