Module: wine Branch: refs/heads/master Commit: cc6bb93baaa1e9e26e5b5a965ddc8c1589c2b5f5 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=cc6bb93baaa1e9e26e5b5a96...
Author: Paul Vriens Paul.Vriens@xs4all.nl Date: Wed Jun 28 19:49:48 2006 +0200
quartz: Fixed typo (Coverity).
---
dlls/quartz/filtergraph.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index dbb4048..bbf22e6 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c @@ -3979,7 +3979,7 @@ static HRESULT WINAPI MediaEvent_SetNoti
TRACE("(%p/%p)->(%ld)\n", This, iface, lNoNotifyFlags);
- if ((lNoNotifyFlags != 0) || (lNoNotifyFlags != 1)) + if ((lNoNotifyFlags != 0) && (lNoNotifyFlags != 1)) return E_INVALIDARG;
This->notif.disabled = lNoNotifyFlags;