Detlef Riekenberg : jscript: Support also VT_UI4 in debugstr_variant.
Module: wine Branch: master Commit: 738120efa2d45253863363a2d84e244eb3ca2bda URL: http://source.winehq.org/git/wine.git/?a=commit;h=738120efa2d45253863363a2d8... Author: Detlef Riekenberg <wine.dev(a)web.de> Date: Sun Jun 26 18:28:27 2011 +0200 jscript: Support also VT_UI4 in debugstr_variant. --- dlls/jscript/jsutils.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/jscript/jsutils.c b/dlls/jscript/jsutils.c index 341b928..d795e7d 100644 --- a/dlls/jscript/jsutils.c +++ b/dlls/jscript/jsutils.c @@ -41,6 +41,8 @@ const char *debugstr_variant(const VARIANT *v) return "{VT_NULL}"; case VT_I4: return wine_dbg_sprintf("{VT_I4: %d}", V_I4(v)); + case VT_UI4: + return wine_dbg_sprintf("{VT_UI4: %u}", V_UI4(v)); case VT_R8: return wine_dbg_sprintf("{VT_R8: %lf}", V_R8(v)); case VT_BSTR:
participants (1)
-
Alexandre Julliard