dinput: Added and removed spaces in FIXME and TRACE messages

Andrey Gusev andrey.goosev at gmail.com
Sat Dec 28 08:10:24 CST 2013


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20131228/62d9a23e/attachment-0001.html>
-------------- next part --------------
From db007b29ad07f024370dd433e5a6345ef1a331b3 Mon Sep 17 00:00:00 2001
Message-Id: <db007b29ad07f024370dd433e5a6345ef1a331b3.1388239506.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Sat, 28 Dec 2013 16:04:08 +0200
Subject: dinput: Added and removed spaces in FIXME and TRACE messages

---
 dlls/dinput/dinput_main.c       | 4 ++--
 dlls/dinput/effect_linuxinput.c | 2 +-
 dlls/dinput/joystick.c          | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/dinput/dinput_main.c b/dlls/dinput/dinput_main.c
index 14d5285..a3f4d55 100644
--- a/dlls/dinput/dinput_main.c
+++ b/dlls/dinput/dinput_main.c
@@ -1324,7 +1324,7 @@ static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
 static HRESULT WINAPI DICF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
 	IClassFactoryImpl *This = impl_from_IClassFactory(iface);
 
-	FIXME("(%p)->(%s,%p),stub!\n",This,debugstr_guid(riid),ppobj);
+	FIXME("(%p)->(%s,%p), stub!\n",This,debugstr_guid(riid),ppobj);
 	return E_NOINTERFACE;
 }
 
@@ -1361,7 +1361,7 @@ static HRESULT WINAPI DICF_CreateInstance(
 
 static HRESULT WINAPI DICF_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
 	IClassFactoryImpl *This = impl_from_IClassFactory(iface);
-	FIXME("(%p)->(%d),stub!\n",This,dolock);
+	FIXME("(%p)->(%d), stub!\n",This,dolock);
 	return S_OK;
 }
 
diff --git a/dlls/dinput/effect_linuxinput.c b/dlls/dinput/effect_linuxinput.c
index 3f17217..6913824 100644
--- a/dlls/dinput/effect_linuxinput.c
+++ b/dlls/dinput/effect_linuxinput.c
@@ -346,7 +346,7 @@ static HRESULT WINAPI LinuxInputEffectImpl_Start(
     event.code = This->effect.id;
     event.value = min( dwIterations, INT_MAX );
     if (write(*(This->fd), &event, sizeof(event)) == -1) {
-	FIXME("Unable to write event.  Assuming device disconnected.\n");
+	FIXME("Unable to write event. Assuming device disconnected.\n");
 	return DIERR_INPUTLOST;
     }
 
diff --git a/dlls/dinput/joystick.c b/dlls/dinput/joystick.c
index 4eddd89..e4bdab6 100644
--- a/dlls/dinput/joystick.c
+++ b/dlls/dinput/joystick.c
@@ -133,7 +133,7 @@ static void _dump_DICONDITION(LPCDICONDITION frc)
 static void _dump_DICUSTOMFORCE(LPCDICUSTOMFORCE frc)
 {
     unsigned int i;
-    TRACE("Custom force uses %d channels, sample period %d.  Has %d samples at %p.\n",
+    TRACE("Custom force uses %d channels, sample period %d. Has %d samples at %p.\n",
           frc->cChannels, frc->dwSamplePeriod, frc->cSamples, frc->rglForceData);
     if (frc->cSamples % frc->cChannels != 0)
         WARN("Custom force has a non-integral samples-per-channel count!\n");
-- 
1.8.1.2


More information about the wine-patches mailing list