Commit 06fbe601 authored by Alexandre Julliard's avatar Alexandre Julliard

oleaut32: Fixed compiler warning.

parent 46c4b88b
...@@ -1427,7 +1427,7 @@ static HRESULT WINAPI OLEFontImpl_Invoke( ...@@ -1427,7 +1427,7 @@ static HRESULT WINAPI OLEFontImpl_Invoke(
} }
if (pDispParams->cArgs != 1) 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; return DISP_E_BADPARAMCOUNT;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment