http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5cc82b0
)
quartz: Avoid sizeof in traces.
author
Alexandre Julliard
<julliard@winehq.org>
Thu, 17 Apr 2008 18:17:03 +0000
(20:17 +0200)
committer
Alexandre Julliard
<julliard@winehq.org>
Thu, 17 Apr 2008 18:17:03 +0000
(20:17 +0200)
dlls/quartz/avisplit.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/quartz/avisplit.c
b/dlls/quartz/avisplit.c
index 61d4d76ddaef8dc08344c0f3d33d954e3438a470..89c02d45e0be2b1d0254c6b4cdcdb3b683393d64 100644
(file)
--- a/
dlls/quartz/avisplit.c
+++ b/
dlls/quartz/avisplit.c
@@
-614,7
+614,7
@@
static HRESULT AVISplitter_ProcessStreamList(AVISplitterImpl * This, const BYTE
if (pIndex->cb < sizeof(AVISUPERINDEX) - sizeof(RIFFCHUNK))
{
- FIXME("
%u < %u?!\n", pIndex->cb, sizeof(AVISUPERINDEX) - sizeof(RIFFCHUNK)
);
+ FIXME("
size %u\n", pIndex->cb
);
break;
}
@@
-704,7
+704,7
@@
static HRESULT AVISplitter_ProcessODML(AVISplitterImpl * This, const BYTE * pDat
TRACE("processing extension header\n");
if (pExtHdr->cb != sizeof(AVIEXTHEADER) - sizeof(RIFFCHUNK))
{
- FIXME("Size: %u
, other size: %u\n", pExtHdr->cb, sizeof(AVIEXTHEADER) - sizeof(RIFFCHUNK)
);
+ FIXME("Size: %u
\n", pExtHdr->cb
);
break;
}
TRACE("dwGrandFrames: %u\n", pExtHdr->dwGrandFrames);