perf time-utils: 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>master
parent
0e14cb3b24
commit
21c0bc9144
|
|
@ -325,7 +325,7 @@ static int percent_comma_split(struct perf_time_interval *ptime_buf, int num,
|
|||
}
|
||||
|
||||
static int one_percent_convert(struct perf_time_interval *ptime_buf,
|
||||
const char *ostr, u64 start, u64 end, char *c)
|
||||
const char *ostr, u64 start, u64 end, const char *c)
|
||||
{
|
||||
char *str;
|
||||
int len = strlen(ostr), ret;
|
||||
|
|
@ -358,7 +358,7 @@ static int one_percent_convert(struct perf_time_interval *ptime_buf,
|
|||
int perf_time__percent_parse_str(struct perf_time_interval *ptime_buf, int num,
|
||||
const char *ostr, u64 start, u64 end)
|
||||
{
|
||||
char *c;
|
||||
const char *c;
|
||||
|
||||
/*
|
||||
* ostr example:
|
||||
|
|
|
|||
Loading…
Reference in New Issue