mirror of
https://github.com/reactos/reactos.git
synced 2026-06-02 01:11:03 +08:00
[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:
@@ -158,7 +158,7 @@ static void SHPropertyBag_ReadTest(void)
|
||||
HRESULT hr;
|
||||
CDummyPropertyBag dummy;
|
||||
BOOL bValue = 0xDEADFACE;
|
||||
SHORT sValue = 0xDEAD;
|
||||
SHORT sValue = 0xDEADu;
|
||||
LONG lValue = 0xDEADDEAD;
|
||||
DWORD dwValue = 0xFEEDF00D;
|
||||
BSTR bstr = NULL;
|
||||
|
||||
Reference in New Issue
Block a user