Nikolay Sivov : msxml3: Add VT_I1 type to variant dump helper.

Alexandre Julliard julliard at winehq.org
Mon Jul 9 14:56:38 CDT 2012


Module: wine
Branch: master
Commit: ec8ec0fa9bf6259331527fd1c2e72ef0ddc5d80b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ec8ec0fa9bf6259331527fd1c2e72ef0ddc5d80b

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Sun Jul  8 22:54:20 2012 +0400

msxml3: Add VT_I1 type to variant dump helper.

---

 dlls/msxml3/main.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/msxml3/main.c b/dlls/msxml3/main.c
index 6ecfdbc..3debd06 100644
--- a/dlls/msxml3/main.c
+++ b/dlls/msxml3/main.c
@@ -267,6 +267,8 @@ const char *debugstr_variant(const VARIANT *v)
         return "{VT_EMPTY}";
     case VT_NULL:
         return "{VT_NULL}";
+    case VT_I1:
+        return wine_dbg_sprintf("{VT_I1: %d}", V_I1(v));
     case VT_I2:
         return wine_dbg_sprintf("{VT_I2: %d}", V_I2(v));
     case VT_I4:




More information about the wine-cvs mailing list