mirror of
https://github.com/reactos/wine.git
synced 2025-03-06 11:47:16 +00:00
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…
x
Reference in New Issue
Block a user