[BROWSEUI] Fix MSVC warning about unary minus operator

basebarsite.cpp(536): warning C4146: unary minus operator applied to unsigned type, result still unsigned
This commit is contained in:
Timo Kreuzer 2025-04-13 11:38:13 +03:00
parent e98bba2535
commit 9bfa6b51be

View file

@ -533,7 +533,7 @@ HRESULT STDMETHODCALLTYPE CBaseBarSite::EnumBands(UINT uBand, DWORD *pdwBandID)
{
REBARBANDINFO bandInfo;
if (uBand == -1ul)
if (uBand == UINT_MAX)
return (HRESULT)SendMessage(RB_GETBANDCOUNT, 0, 0);
if (pdwBandID == NULL)
return E_INVALIDARG;