Commit 585f8dfe authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent b31ef9c8
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment