dmstyle/tests: Avoid a clang warning.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9e74cdc639
commit
6fd5bce038
|
@ -356,13 +356,13 @@ struct chunk {
|
|||
followed by the chunks of the list and terminated with 0. */
|
||||
static IStream *gen_riff_stream(const FOURCC *ids)
|
||||
{
|
||||
static const LARGE_INTEGER zero;
|
||||
int level = -1;
|
||||
DWORD *sizes[4]; /* Stack for the sizes of RIFF and LIST chunks */
|
||||
char riff[1024];
|
||||
char *p = riff;
|
||||
struct chunk *ck;
|
||||
IStream *stream;
|
||||
LARGE_INTEGER zero = {0};
|
||||
|
||||
do {
|
||||
ck = (struct chunk *)p;
|
||||
|
|
Loading…
Reference in New Issue