Commit 0c28ca8d authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

atl100/tests: Use the ARRAY_SIZE() macro.

parent dc235ab4
...@@ -304,8 +304,8 @@ static void test_typelib(void) ...@@ -304,8 +304,8 @@ static void test_typelib(void)
FreeLibrary(inst); FreeLibrary(inst);
len = SysStringLen(path); len = SysStringLen(path);
ok(len > sizeof(scrrun_dll_suffixW)/sizeof(WCHAR) ok(len > ARRAY_SIZE(scrrun_dll_suffixW)
&& lstrcmpiW(path+len-sizeof(scrrun_dll_suffixW)/sizeof(WCHAR), scrrun_dll_suffixW), && lstrcmpiW(path+len-ARRAY_SIZE(scrrun_dll_suffixW), scrrun_dll_suffixW),
"unexpected path %s\n", wine_dbgstr_w(path)); "unexpected path %s\n", wine_dbgstr_w(path));
SysFreeString(path); SysFreeString(path);
ok(typelib != NULL, "typelib == NULL\n"); ok(typelib != NULL, "typelib == NULL\n");
...@@ -320,8 +320,8 @@ static void test_typelib(void) ...@@ -320,8 +320,8 @@ static void test_typelib(void)
FreeLibrary(inst); FreeLibrary(inst);
len = SysStringLen(path); len = SysStringLen(path);
ok(len > sizeof(mshtml_tlb_suffixW)/sizeof(WCHAR) ok(len > ARRAY_SIZE(mshtml_tlb_suffixW)
&& lstrcmpiW(path+len-sizeof(mshtml_tlb_suffixW)/sizeof(WCHAR), mshtml_tlb_suffixW), && lstrcmpiW(path+len-ARRAY_SIZE(mshtml_tlb_suffixW), mshtml_tlb_suffixW),
"unexpected path %s\n", wine_dbgstr_w(path)); "unexpected path %s\n", wine_dbgstr_w(path));
SysFreeString(path); SysFreeString(path);
ok(typelib != NULL, "typelib == NULL\n"); ok(typelib != NULL, "typelib == NULL\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment