shell32: Remove redundant "not NULL" check of ppidl (coccicheck).

This commit is contained in:
Michael Stefaniuc 2010-05-18 01:31:40 +02:00 committed by Alexandre Julliard
parent efeb9ee4d2
commit f8bac98196
1 changed files with 1 additions and 1 deletions

View File

@ -431,7 +431,7 @@ IShellFolder_fnParseDisplayName (IShellFolder2 * iface,
else
*ppidl = NULL;
TRACE ("(%p)->(-- pidl=%p ret=0x%08x)\n", This, ppidl ? *ppidl : 0, hr);
TRACE ("(%p)->(-- pidl=%p ret=0x%08x)\n", This, *ppidl, hr);
return hr;
}