Alistair Leslie-Hughes : webservices/tests: Use standard wine_dbgstr_longlong.

Alexandre Julliard julliard at winehq.org
Wed Jul 5 15:41:01 CDT 2017


Module: wine
Branch: master
Commit: 75c0879826dbcf0b21b0c5a25c2b96f3a9d288e0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=75c0879826dbcf0b21b0c5a25c2b96f3a9d288e0

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Wed Jul  5 02:36:28 2017 +0000

webservices/tests: Use standard wine_dbgstr_longlong.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/webservices/tests/reader.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/webservices/tests/reader.c b/dlls/webservices/tests/reader.c
index a62a069..66151ff 100644
--- a/dlls/webservices/tests/reader.c
+++ b/dlls/webservices/tests/reader.c
@@ -3546,7 +3546,7 @@ static void test_datetime(void)
         ok( hr == tests[i].hr, "%u: got %08x\n", i, hr );
         if (hr == S_OK)
         {
-            ok( date.ticks == tests[i].ticks, "%u: got %x%08x\n", i, (ULONG)(date.ticks >> 32), (ULONG)date.ticks );
+            ok( date.ticks == tests[i].ticks, "%u: got %s\n", i, wine_dbgstr_longlong(date.ticks) );
             ok( date.format == tests[i].format, "%u: got %u\n", i, date.format );
         }
     }
@@ -3622,14 +3622,14 @@ static void test_WsFileTimeToDateTime(void)
     dt.format = 0xdeadbeef;
     hr = WsFileTimeToDateTime( &ft, &dt, NULL );
     ok( hr == S_OK, "got %08x\n", hr );
-    ok( dt.ticks == 0x701ce1722770000, "got %x%08x\n", (ULONG)(dt.ticks >> 32), (ULONG)dt.ticks );
+    ok( dt.ticks == 0x701ce1722770000, "got %s\n", wine_dbgstr_longlong(dt.ticks) );
     ok( dt.format == WS_DATETIME_FORMAT_UTC, "got %u\n", dt.format );
 
     ft.dwLowDateTime  = 0xd1c03fff;
     ft.dwHighDateTime = 0x24c85a5e;
     hr = WsFileTimeToDateTime( &ft, &dt, NULL );
     ok( hr == S_OK, "got %08x\n", hr );
-    ok( dt.ticks == 0x2bca2875f4373fff, "got %x%08x\n", (ULONG)(dt.ticks >> 32), (ULONG)dt.ticks );
+    ok( dt.ticks == 0x2bca2875f4373fff, "got %s\n", wine_dbgstr_longlong(dt.ticks) );
     ok( dt.format == WS_DATETIME_FORMAT_UTC, "got %u\n", dt.format );
 
     ft.dwLowDateTime++;
@@ -3734,7 +3734,7 @@ static void test_double(void)
         hr = WsReadType( reader, WS_ELEMENT_CONTENT_TYPE_MAPPING, WS_DOUBLE_TYPE, NULL,
                          WS_READ_REQUIRED_VALUE, heap, &val, sizeof(val), NULL );
         ok( hr == tests[i].hr, "%u: got %08x\n", i, hr );
-        if (hr == tests[i].hr) ok( val == tests[i].val, "%u: got %x%08x\n", i, (ULONG)(val >> 32), (ULONG)val );
+        if (hr == tests[i].hr) ok( val == tests[i].val, "%u: got %s\n", i, wine_dbgstr_longlong(val) );
     }
 
     WsFreeReader( reader );




More information about the wine-cvs mailing list