Module: wine Branch: refs/heads/master Commit: 61708da1c87067ab314da9994d70e5d231dba7bb URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=61708da1c87067ab314da999...
Author: Robert Shearman rob@codeweavers.com Date: Tue Jan 31 12:21:27 2006 +0100
oleaut: Dump the pointer for VT_ARRAY/VT_VECTOR typed variants.
---
dlls/oleaut32/typelib.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index 2dbbd34..b6693fc 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -1224,7 +1224,7 @@ void dump_Variant(const VARIANT * pvar) } else if (V_ISARRAY(pvar) || V_ISVECTOR(pvar)) { - TRACE(",FIXME"); + TRACE(",%p", V_ARRAY(pvar)); } else switch (V_TYPE(pvar)) {