mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
diagnostics: fix clang Windows build (#10370)
Restore necessary const qualifier removed by 0055a33e81
This commit is contained in:
parent
b2679ec43c
commit
bd7870abe6
1 changed files with 1 additions and 1 deletions
|
@ -507,7 +507,7 @@ bool symbol_manager::parse_sym_line(const char *line, uintptr_t &address, std::s
|
|||
*/
|
||||
|
||||
// first look for a (ty) entry
|
||||
char *type = strstr(line, "(ty 20)");
|
||||
const char *type = strstr(line, "(ty 20)");
|
||||
if (type == nullptr)
|
||||
type = strstr(line, "(ty 20)");
|
||||
|
||||
|
|
Loading…
Reference in a new issue