Browse Source

windows: add whitespace to fix macro preprocessing issue (thanks, Sven!).

Apparently without a space here, "fastbuild -cache" breaks.
Ryan C. Gordon 8 years ago
parent
commit
f50a04009c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/video/windows/SDL_windowskeyboard.c

+ 1 - 1
src/video/windows/SDL_windowskeyboard.c

@@ -1036,7 +1036,7 @@ STDMETHODIMP_(ULONG) TSFSink_AddRef(TSFSink *sink)
     return ++sink->refcount;
 }
 
-STDMETHODIMP_(ULONG)TSFSink_Release(TSFSink *sink)
+STDMETHODIMP_(ULONG) TSFSink_Release(TSFSink *sink)
 {
     --sink->refcount;
     if (sink->refcount == 0) {