From 16b33b45ab8d6da592ba062ccdebad57338336aa Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Tue, 27 Sep 2016 16:51:39 +0000 Subject: [PATCH] [ATL_APITEST] - Fix MSVC build svn path=/trunk/; revision=72827 --- rostests/apitests/atl/CComVariant.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rostests/apitests/atl/CComVariant.cpp b/rostests/apitests/atl/CComVariant.cpp index d41d128a74b..8a24a00c4cc 100644 --- a/rostests/apitests/atl/CComVariant.cpp +++ b/rostests/apitests/atl/CComVariant.cpp @@ -148,7 +148,7 @@ static void test_construction() ok(V_I8(&l1) == lv, "Expected value to be %s, was: %s\n", wine_dbgstr_longlong(lv), wine_dbgstr_longlong(V_I8(&l1))); } { - ULONGLONG lv = 12030912309123llu; + ULONGLONG lv = 12030912309123ull; CComVariant l1(lv); ok(V_VT(&l1) == VT_UI8, "Expected .vt to be VT_UI8, was %u\n", V_VT(&l1)); ok(V_UI8(&l1) == lv, "Expected value to be %s, was: %s\n", wine_dbgstr_longlong(lv), wine_dbgstr_longlong(V_UI8(&l1))); @@ -248,7 +248,7 @@ static void test_copyconstructor() ok(V_I8(&l2) == lv, "Expected value to be %s, was: %s\n", wine_dbgstr_longlong(lv), wine_dbgstr_longlong(V_I8(&l2))); } { - ULONGLONG lv = 12030912309123llu; + ULONGLONG lv = 12030912309123ull; CComVariant l1(lv); CComVariant l2(l1); ok(V_VT(&l2) == VT_UI8, "Expected .vt to be VT_UI8, was %u\n", V_VT(&l2)); @@ -370,7 +370,7 @@ static void test_assign() ok(V_I8(&l2) == lv, "Expected value to be %s, was: %s\n", wine_dbgstr_longlong(lv), wine_dbgstr_longlong(V_I8(&l2))); } { - ULONGLONG lv = 12030912309123llu; + ULONGLONG lv = 12030912309123ull; CComVariant l1 = lv; ok(V_VT(&l1) == VT_UI8, "Expected .vt to be VT_UI8, was %u\n", V_VT(&l1)); ok(V_UI8(&l1) == lv, "Expected value to be %s, was: %s\n", wine_dbgstr_longlong(lv), wine_dbgstr_longlong(V_UI8(&l1)));