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

Apparently without a space here, "fastbuild -cache" breaks.
This commit is contained in:
Ryan C. Gordon 2016-12-13 00:22:42 -05:00
parent 85d8a79f65
commit f50a04009c
1 changed files with 1 additions and 1 deletions

View File

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