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:
Michael Stefaniuc 2018-03-06 01:07:27 +01:00 committed by Alexandre Julliard
parent 9e74cdc639
commit 6fd5bce038
1 changed files with 1 additions and 1 deletions

View File

@ -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;