Commit 6fd5bce0 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dmstyle/tests: Avoid a clang warning.

parent 9e74cdc6
...@@ -356,13 +356,13 @@ struct chunk { ...@@ -356,13 +356,13 @@ struct chunk {
followed by the chunks of the list and terminated with 0. */ followed by the chunks of the list and terminated with 0. */
static IStream *gen_riff_stream(const FOURCC *ids) static IStream *gen_riff_stream(const FOURCC *ids)
{ {
static const LARGE_INTEGER zero;
int level = -1; int level = -1;
DWORD *sizes[4]; /* Stack for the sizes of RIFF and LIST chunks */ DWORD *sizes[4]; /* Stack for the sizes of RIFF and LIST chunks */
char riff[1024]; char riff[1024];
char *p = riff; char *p = riff;
struct chunk *ck; struct chunk *ck;
IStream *stream; IStream *stream;
LARGE_INTEGER zero = {0};
do { do {
ck = (struct chunk *)p; ck = (struct chunk *)p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment