mirror of
https://github.com/holub/mame
synced 2025-06-22 20:38:50 +03:00
diagnostics: fix clang Windows build (#10370)
Restore necessary const qualifier removed by 0055a33e81
This commit is contained in:
parent
5b0d542bed
commit
251d0c9995
@ -507,7 +507,7 @@ bool symbol_manager::parse_sym_line(const char *line, uintptr_t &address, std::s
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// first look for a (ty) entry
|
// first look for a (ty) entry
|
||||||
char *type = strstr(line, "(ty 20)");
|
const char *type = strstr(line, "(ty 20)");
|
||||||
if (type == nullptr)
|
if (type == nullptr)
|
||||||
type = strstr(line, "(ty 20)");
|
type = strstr(line, "(ty 20)");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user