Commit 1da4f8bf authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winedump: Ignore case when detecting void.

parent a5a7d6c9
......@@ -330,7 +330,7 @@ void output_c_symbol (const parsed_symbol *sym)
return;
}
is_void = !strcmp (sym->return_text, "void");
is_void = !strcasecmp (sym->return_text, "void");
output_prototype (cfile, sym);
fputs ("\n{\n", cfile);
......
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