From b46a106ab1dda66f6ae6481d0ece035871f41135 Mon Sep 17 00:00:00 2001 From: Robert Reif Date: Tue, 9 Nov 2004 20:10:46 +0000 Subject: [PATCH] Remove redundant GUID check. --- dlls/dsound/capture.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/dsound/capture.c b/dlls/dsound/capture.c index 3617d6bafd2..948cbab6237 100644 --- a/dlls/dsound/capture.c +++ b/dlls/dsound/capture.c @@ -930,8 +930,7 @@ IDirectSoundCaptureBufferImpl_QueryInterface( *ppobj = NULL; - if ( IsEqualGUID( &IID_IDirectSoundNotify, riid ) || - IsEqualGUID( &IID_IDirectSoundNotify8, riid ) ) { + if ( IsEqualGUID( &IID_IDirectSoundNotify, riid ) ) { if (!This->notify) hres = IDirectSoundCaptureNotifyImpl_Create(This, &This->notify); if (This->notify) {