mshtml: Added VT_UINT handling to debugstr_variant.
This commit is contained in:
parent
8d8bef944d
commit
57f23b875c
|
@ -433,6 +433,8 @@ const char *debugstr_variant(const VARIANT *v)
|
|||
return wine_dbg_sprintf("{VT_DISPATCH: %p}", V_DISPATCH(v));
|
||||
case VT_BOOL:
|
||||
return wine_dbg_sprintf("{VT_BOOL: %x}", V_BOOL(v));
|
||||
case VT_UINT:
|
||||
return wine_dbg_sprintf("{VT_UINT: %u}", V_UINT(v));
|
||||
default:
|
||||
return wine_dbg_sprintf("{vt %d}", V_VT(v));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue