From: Daniel Martin dm@xbostechnology.com
--- dlls/activeds/tests/activeds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/activeds/tests/activeds.c b/dlls/activeds/tests/activeds.c index f5a42406055..f84747b947b 100644 --- a/dlls/activeds/tests/activeds.c +++ b/dlls/activeds/tests/activeds.c @@ -86,7 +86,7 @@ static void test_ADsBuildVarArrayStr(void)
static void test_ADsBuildVarArrayInt(void) { - const DWORD props[] = { 1, 2, 3, 4 }; + DWORD props[] = { 1, 2, 3, 4 }; HRESULT hr; VARIANT var, item; LONG start, end, idx; @@ -124,7 +124,7 @@ static void test_ADsBuildVarArrayInt(void) hr = SafeArrayGetElement(V_ARRAY(&var), &idx, &item); ok(hr == S_OK, "got %#lx\n", hr); ok(V_VT(&item) == VT_UI4, "got %d\n", V_VT(&item)); - ok(V_UI4(&item) == props[idx], "got %u\n", V_UI4(&item)); + ok(V_UI4(&item) == props[idx], "got %lu\n", V_UI4(&item)); VariantClear(&item); }