msvfw32: Don't use sizeof in traces to avoid printf format warnings.
This commit is contained in:
parent
5784ca9bca
commit
348fd746d9
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue