Commit f333c4a2 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

dbghelp: Turn variable 'code' into a static constant.

parent cbae62ba
......@@ -670,7 +670,7 @@ static unsigned dump_system_info(struct dump_context* dc)
/* write Wine specific system information just behind the structure, and before any string */
if (wine_extra)
{
char code[] = {'W','I','N','E'};
static const char code[] = {'W','I','N','E'};
WriteFile(dc->hFile, code, 4, &written, NULL);
/* number of sub-info, so that we can extend structure if needed */
......
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