Commit 2c850606 authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo
Browse files

perf trace: Deal with compiler const checks



The strchr() function these days return const/non-const based on the arg
it receives, and sometimes we need to use casts when we're dealing with
variables that are used in code that needs to safely change the returned
value and sometimes not (as it points to really const areas).

Tweak one such case.

Reviewed-by: default avatarIan Rogers <irogers@google.com>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 01ea3894
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5190,7 +5190,7 @@ static int trace__parse_events_option(const struct option *opt, const char *str,
	}

	while (1) {
		if ((sep = strchr(s, ',')) != NULL)
		if ((sep = strchr((char *)s, ',')) != NULL)
			*sep = '\0';

		list = 0;