Module: wine Branch: master Commit: 615ef9855561200678e541ec43d8afac026810ad URL: http://source.winehq.org/git/wine.git/?a=commit;h=615ef9855561200678e541ec43...
Author: Sebastian Lackner sebastian@fds-team.de Date: Tue Sep 1 14:59:38 2015 +0200
include: Fix copy and paste errors in wine_dbgstr_vt.
---
include/wine/debug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/wine/debug.h b/include/wine/debug.h index 95d74d3..241e79b 100644 --- a/include/wine/debug.h +++ b/include/wine/debug.h @@ -244,7 +244,7 @@ static inline const char *wine_dbgstr_vt( VARTYPE vt ) "|VT_ARRAY", "|VT_VECTOR|VT_ARRAY", "|VT_BYREF", - "|VT_VECTOR|VT_ARRAY", + "|VT_VECTOR|VT_BYREF", "|VT_ARRAY|VT_BYREF", "|VT_VECTOR|VT_ARRAY|VT_BYREF", "|VT_RESERVED", @@ -252,7 +252,7 @@ static inline const char *wine_dbgstr_vt( VARTYPE vt ) "|VT_ARRAY|VT_RESERVED", "|VT_VECTOR|VT_ARRAY|VT_RESERVED", "|VT_BYREF|VT_RESERVED", - "|VT_VECTOR|VT_ARRAY|VT_RESERVED", + "|VT_VECTOR|VT_BYREF|VT_RESERVED", "|VT_ARRAY|VT_BYREF|VT_RESERVED", "|VT_VECTOR|VT_ARRAY|VT_BYREF|VT_RESERVED", };