Commit 348fd746 authored by Alexandre Julliard's avatar Alexandre Julliard

msvfw32: Don't use sizeof in traces to avoid printf format warnings.

parent 5784ca9b
......@@ -1374,7 +1374,7 @@ LPVOID VFWAPI ICSeqCompressFrame(PCOMPVARS pc, UINT uiFlags, LPVOID lpBits, BOOL
if (pc->cbState != sizeof(ICCOMPRESS))
{
ERR("Invalid cbState (%li should be %i)\n", pc->cbState, sizeof(ICCOMPRESS));
ERR("Invalid cbState %li\n", pc->cbState);
return NULL;
}
......
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