From 319f28553c2829b2826a56635b080a1b568885a7 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Wed, 24 Sep 2008 19:34:32 +0200 Subject: [PATCH] oleaut32/tests: Fix printf format warning. --- dlls/oleaut32/tests/olefont.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/oleaut32/tests/olefont.c b/dlls/oleaut32/tests/olefont.c index 6774368100e..6b98768f7eb 100644 --- a/dlls/oleaut32/tests/olefont.c +++ b/dlls/oleaut32/tests/olefont.c @@ -140,7 +140,7 @@ static void test_QueryInterface(void) ret = IFont_AddRef(font); ok(ret == 3 || broken(ret == 1), /* win95 */ - "IFont_QI expected ref value 3 but instead got %ld\n",ret); + "IFont_QI expected ref value 3 but instead got %d\n",ret); IFont_Release(font); ok(hres == S_OK,"IFont_QI does not return S_OK, but 0x%08x\n", hres); -- 2.11.4.GIT