mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00: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:
parent
46ab34662d
commit
bdae8cf966
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue