quartz: Remove an unused variable (PVS-Studio).

This commit is contained in:
Michael Stefaniuc 2015-01-08 11:10:11 +01:00 committed by Alexandre Julliard
parent b31ef9c80a
commit 585f8dfe7e
1 changed files with 2 additions and 3 deletions

View File

@ -274,11 +274,10 @@ HRESULT __RPC_STUB ICaptureGraphBuilder2_FindInterface_Stub( ICaptureGraphBuilde
const char * qzdebugstr_guid( const GUID * id )
{
int i;
char * name = NULL;
for (i=0;InterfaceDesc[i].name && !name;i++) {
for (i=0; InterfaceDesc[i].name; i++)
if (IsEqualGUID(&InterfaceDesc[i].riid, id)) return InterfaceDesc[i].name;
}
return debugstr_guid(id);
}