Commit 5644a10e authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

user32: Avoid dead initialization (scan-build).

parent 6ea282c7
......@@ -248,7 +248,7 @@ static void dpiaware_init(void)
static const WCHAR permonv2W[] = {'p','e','r','m','o','n','i','t','o','r','v','2',0};
static const WCHAR spacesW[] = {' ','\t','\r','\n',0};
static const WCHAR * const types[] = { unawareW, systemW, permonW, permonv2W };
WCHAR *p, *start = buffer, *end;
WCHAR *p, *start, *end;
ULONG_PTR i;
TRACE( "got dpiAwareness=%s\n", debugstr_w(buffer) );
......
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