Commit af399237 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

include: Use the ARRAY_SIZE() macro in debug.h.

parent 139cc956
......@@ -254,7 +254,7 @@ static inline const char *wine_dbgstr_vt( VARTYPE vt )
if (vt & ~VT_TYPEMASK)
return wine_dbg_sprintf( "%s%s", wine_dbgstr_vt(vt&VT_TYPEMASK), variant_flags[vt>>12] );
if (vt < sizeof(variant_types)/sizeof(*variant_types))
if (vt < ARRAY_SIZE(variant_types))
return variant_types[vt];
if (vt == VT_BSTR_BLOB)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment