winedump: Ignore case when detecting void.
This commit is contained in:
parent
a5a7d6c9f0
commit
1da4f8bf4a
|
@ -330,7 +330,7 @@ void output_c_symbol (const parsed_symbol *sym)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
is_void = !strcmp (sym->return_text, "void");
|
is_void = !strcasecmp (sym->return_text, "void");
|
||||||
|
|
||||||
output_prototype (cfile, sym);
|
output_prototype (cfile, sym);
|
||||||
fputs ("\n{\n", cfile);
|
fputs ("\n{\n", cfile);
|
||||||
|
|
Loading…
Reference in New Issue