From 06fbe6012ffee4d256e58ef35490c8fac79e7b1d Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 27 Jul 2006 12:03:33 +0200 Subject: [PATCH] oleaut32: Fixed compiler warning. --- dlls/oleaut32/olefont.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/oleaut32/olefont.c b/dlls/oleaut32/olefont.c index af18428df1e..87848c611c7 100644 --- a/dlls/oleaut32/olefont.c +++ b/dlls/oleaut32/olefont.c @@ -1427,7 +1427,7 @@ static HRESULT WINAPI OLEFontImpl_Invoke( } if (pDispParams->cArgs != 1) { - ERR("param count for DISPATCH_PROPERTYPUT was %ld instead of 1\n", pDispParams->cArgs); + ERR("param count for DISPATCH_PROPERTYPUT was %d instead of 1\n", pDispParams->cArgs); return DISP_E_BADPARAMCOUNT; } }