comctl32: Fix a typo in a debug message.

This commit is contained in:
Detlef Riekenberg 2007-11-13 21:49:06 +01:00 committed by Alexandre Julliard
parent b734dee31e
commit 2b8f8d16bd

View file

@ -572,7 +572,7 @@ static char* debug_getbuf(void)
static inline const char* debugrange(const RANGE *lprng)
{
if (!lprng) return "(null)";
return wine_dbg_sprintf("[%d, %d)", lprng->lower, lprng->upper);
return wine_dbg_sprintf("[%d, %d]", lprng->lower, lprng->upper);
}
static const char* debugscrollinfo(const SCROLLINFO *pScrollInfo)