Eric Pouech : oleacc/tests: Use correct integral type.
Module: wine Branch: master Commit: 79d1c69635ce3852e097050a81fbb17de807a5ba URL: https://source.winehq.org/git/wine.git/?a=commit;h=79d1c69635ce3852e097050a8... Author: Eric Pouech <eric.pouech(a)gmail.com> Date: Wed Mar 2 09:04:28 2022 +0100 oleacc/tests: Use correct integral type. Signed-off-by: Eric Pouech <eric.pouech(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/oleacc/tests/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/oleacc/tests/main.c b/dlls/oleacc/tests/main.c index 6b0000e5f56..379611e17d8 100644 --- a/dlls/oleacc/tests/main.c +++ b/dlls/oleacc/tests/main.c @@ -538,7 +538,7 @@ static void test_GetStateText(void) ok(!ret, "31) GetStateText succeeded: %d\n", ret); } -static int Object_ref = 1; +static LONG Object_ref = 1; static HRESULT WINAPI Object_QueryInterface(IUnknown *iface, REFIID riid, void **ppv) { if(IsEqualIID(riid, &IID_IUnknown)) {
participants (1)
-
Alexandre Julliard