Michael Stefaniuc : oleaut32/tests: Fix printf format warning.

Alexandre Julliard julliard at winehq.org
Thu Sep 25 07:13:38 CDT 2008


Module: wine
Branch: master
Commit: 319f28553c2829b2826a56635b080a1b568885a7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=319f28553c2829b2826a56635b080a1b568885a7

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Wed Sep 24 19:34:32 2008 +0200

oleaut32/tests: Fix printf format warning.

---

 dlls/oleaut32/tests/olefont.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/oleaut32/tests/olefont.c b/dlls/oleaut32/tests/olefont.c
index 6774368..6b98768 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);




More information about the wine-cvs mailing list