Author: akhaldi
Date: Thu Nov 26 23:26:49 2015
New Revision: 70134
URL:
http://svn.reactos.org/svn/reactos?rev=70134&view=rev
Log:
[PROPSYS_WINETEST] Sync with Wine Staging 1.7.55. CORE-10536
Modified:
trunk/rostests/winetests/propsys/propsys.c
Modified: trunk/rostests/winetests/propsys/propsys.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/propsys/propsys…
==============================================================================
--- trunk/rostests/winetests/propsys/propsys.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/propsys/propsys.c [iso-8859-1] Thu Nov 26 23:26:49 2015
@@ -774,11 +774,11 @@
PropVariantClear(&propvar);
propvar.vt = VT_I8;
- propvar.u.hVal.QuadPart = (LONGLONG)1 << 63;
+ propvar.u.hVal.QuadPart = (ULONGLONG)1 << 63;
hr = PropVariantToInt64(&propvar, &llval);
ok(hr == S_OK, "hr=%x\n", hr);
- ok(llval == (LONGLONG)1 << 63, "got wrong value %s\n",
debugstr_longlong(llval));
+ ok(llval == (ULONGLONG)1 << 63, "got wrong value %s\n",
debugstr_longlong(llval));
hr = PropVariantToUInt64(&propvar, &ullval);
ok(hr == HRESULT_FROM_WIN32(ERROR_ARITHMETIC_OVERFLOW), "hr=%x\n", hr);