comctl32: Downgrade an ERR to a WARN.

This commit is contained in:
Mike McCormack 2006-11-09 13:16:38 +09:00 committed by Alexandre Julliard
parent f76d3c259c
commit f23ab81738

View File

@ -5205,7 +5205,7 @@ TOOLBAR_GetStringA (HWND hwnd, WPARAM wParam, LPARAM lParam)
TRACE("returning %s\n", debugstr_a(str));
}
else
ERR("String index %d out of range (largest is %d)\n", iString, infoPtr->nNumStrings - 1);
WARN("String index %d out of range (largest is %d)\n", iString, infoPtr->nNumStrings - 1);
return ret;
}