Commit 3a481200 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mshtml/tests: Fix a typo in test message (Coverity).

parent 114a0636
......@@ -223,7 +223,7 @@ static void test_HTMLStorage(void)
hres = IHTMLStorage_get_length(storage, &length);
ok(hres == S_OK, "get_length failed %08lx\n", hres);
ok(length >= 0, "length = %ld\n", lval);
ok(length >= 0, "length = %ld\n", length);
value = SysAllocString(L"null");
hres = IHTMLStorage_setItem(storage, key, value);
......
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