oleaut32/tests: Fix printf format warning.

This commit is contained in:
Michael Stefaniuc 2008-09-24 19:34:32 +02:00 committed by Alexandre Julliard
parent 567fb5e7db
commit 319f28553c

View File

@ -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);