perf demangle-java: Constify variables storing the result of strchr() on const tables

As newer glibcs will propagate the const attribute of the searched table
to its return.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo
2026-01-27 01:15:47 -03:00
parent 21c0bc9144
commit 79bba3a183

View File

@@ -158,7 +158,7 @@ char *
java_demangle_sym(const char *str, int flags)
{
char *buf, *ptr;
char *p;
const char *p;
size_t len, l1 = 0;
if (!str)