[SHLWAPI_APITEST] Fix MSVC compilation warning C4309

SHPropertyBag.cpp(161): warning C4309: 'initializing': truncation of constant value

See https://stackoverflow.com/questions/33333448/warning-c4309-what-does-it-mean-and-can-it-be-ignored-in-this-case
for some details.
This commit is contained in:
Hermès Bélusca-Maïto 2023-10-28 18:17:46 +02:00
parent 46ab34662d
commit bdae8cf966
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -158,7 +158,7 @@ static void SHPropertyBag_ReadTest(void)
HRESULT hr; HRESULT hr;
CDummyPropertyBag dummy; CDummyPropertyBag dummy;
BOOL bValue = 0xDEADFACE; BOOL bValue = 0xDEADFACE;
SHORT sValue = 0xDEAD; SHORT sValue = 0xDEADu;
LONG lValue = 0xDEADDEAD; LONG lValue = 0xDEADDEAD;
DWORD dwValue = 0xFEEDF00D; DWORD dwValue = 0xFEEDF00D;
BSTR bstr = NULL; BSTR bstr = NULL;