Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
windows: add whitespace to fix macro preprocessing issue (thanks, Sve…
…n!).

Apparently without a space here, "fastbuild -cache" breaks.
  • Loading branch information
icculus committed Dec 13, 2016
1 parent 85d8a79 commit f50a040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/windows/SDL_windowskeyboard.c
Expand Up @@ -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) {
Expand Down

0 comments on commit f50a040

Please sign in to comment.