Module: wine Branch: master Commit: 3a481200a488aa0157eec455f228790076cd3b24 URL: https://gitlab.winehq.org/wine/wine/-/commit/3a481200a488aa0157eec455f228790...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Wed Aug 31 09:59:53 2022 +0300
mshtml/tests: Fix a typo in test message (Coverity).
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com
---
dlls/mshtml/tests/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/mshtml/tests/misc.c b/dlls/mshtml/tests/misc.c index c2c8370cc4b..5f38f9d45fb 100644 --- a/dlls/mshtml/tests/misc.c +++ b/dlls/mshtml/tests/misc.c @@ -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);