mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-19 17:06:04 -07:00
propsys: Use debugstr_variant for the trace in VariantToPropVariant.
This commit is contained in:
parent
aea38e1e72
commit
05ba3c4c4f
1 changed files with 1 additions and 1 deletions
|
@ -1127,7 +1127,7 @@ HRESULT WINAPI VariantToPropVariant(const VARIANT *var, PROPVARIANT *propvar)
|
|||
{
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("var %p, propvar %p, var->vt %04x.\n", var, propvar, var->vt);
|
||||
TRACE("var %p, propvar %p.\n", debugstr_variant(var), propvar);
|
||||
|
||||
if (!var || !propvar)
|
||||
return E_INVALIDARG;
|
||||
|
|
Loading…
Reference in a new issue