https://git.reactos.org/?p=reactos.git;a=commitdiff;h=312e0bf079d9b29bed41b15508a8b849444067bc

commit 312e0bf079d9b29bed41b15508a8b849444067bc
Author:     Amine Khaldi <[email protected]>
AuthorDate: Mon Feb 4 13:02:58 2019 +0100
Commit:     Amine Khaldi <[email protected]>
CommitDate: Mon Feb 4 13:02:58 2019 +0100

    [SXS_WINETEST] Sync with Wine Staging 4.0. CORE-15682
---
 modules/rostests/winetests/sxs/cache.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/rostests/winetests/sxs/cache.c 
b/modules/rostests/winetests/sxs/cache.c
index d0c4817c72..19dd4b865e 100644
--- a/modules/rostests/winetests/sxs/cache.c
+++ b/modules/rostests/winetests/sxs/cache.c
@@ -155,12 +155,12 @@ static void test_QueryAssemblyInfo( void )
     memset( &info, 0, sizeof(info) );
     info.cbAssemblyInfo = sizeof(info);
     info.pszCurrentAssemblyPathBuf = path;
-    info.cchBuf = sizeof(path)/sizeof(path[0]);
+    info.cchBuf = ARRAY_SIZE( path );
     hr = IAssemblyCache_QueryAssemblyInfo( cache, 0, comctlW, &info );
     ok( hr == S_OK, "got %08x\n", hr );
     ok( info.dwAssemblyFlags == 1, "got %08x\n", info.dwAssemblyFlags );
     ok( !info.uliAssemblySizeInKB.u.LowPart, "got %u\n", 
info.uliAssemblySizeInKB.u.LowPart );
-    ok( info.cchBuf == sizeof(path)/sizeof(path[0]), "got %u\n", info.cchBuf );
+    ok( info.cchBuf == ARRAY_SIZE( path ), "got %u\n", info.cchBuf );
     ok( path[0], "empty path\n" );
 
     memset( &info, 0, sizeof(info) );
@@ -193,13 +193,13 @@ static void test_QueryAssemblyInfo( void )
     memset( &info, 0, sizeof(info) );
     info.cbAssemblyInfo = sizeof(info);
     info.pszCurrentAssemblyPathBuf = path;
-    info.cchBuf = sizeof(path)/sizeof(path[0]);
+    info.cchBuf = ARRAY_SIZE( path );
     path[0] = 0;
     hr = IAssemblyCache_QueryAssemblyInfo( cache, 2, comctlW, &info );
     ok( hr == E_INVALIDARG, "got %08x\n", hr );
     ok( !info.dwAssemblyFlags, "got %08x\n", info.dwAssemblyFlags );
     ok( !info.uliAssemblySizeInKB.u.LowPart, "got %u\n", 
info.uliAssemblySizeInKB.u.LowPart );
-    ok( info.cchBuf == sizeof(path)/sizeof(path[0]), "got %u\n", info.cchBuf );
+    ok( info.cchBuf == ARRAY_SIZE( path ), "got %u\n", info.cchBuf );
     ok( !path[0], "got %s\n", wine_dbgstr_w(path) );
 
     IAssemblyCache_Release( cache );

Reply via email to