Michael Stefaniuc : riched20: Let C look like C.

Alexandre Julliard julliard at winehq.org
Thu Feb 7 14:07:23 CST 2013


Module: wine
Branch: master
Commit: 6c1b292f0b781c08041867f2508df5df164f61c6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6c1b292f0b781c08041867f2508df5df164f61c6

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Wed Feb  6 23:14:05 2013 +0100

riched20: Let C look like C.

---

 dlls/riched20/txtsrv.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/riched20/txtsrv.c b/dlls/riched20/txtsrv.c
index e9cc5e1..0e78c53 100644
--- a/dlls/riched20/txtsrv.c
+++ b/dlls/riched20/txtsrv.c
@@ -77,7 +77,7 @@ static HRESULT WINAPI ITextServicesImpl_QueryInterface(IUnknown *iface, REFIID r
 
    if (IsEqualIID(riid, &IID_IUnknown))
       *ppv = &This->IUnknown_inner;
-   else if IsEqualIID(riid, &IID_ITextServices)
+   else if (IsEqualIID(riid, &IID_ITextServices))
       *ppv = &This->ITextServices_iface;
    else {
       *ppv = NULL;




More information about the wine-cvs mailing list