perf options: Type check all the remaining OPT_ variants
OPT_SET_INT was renamed to OPT_SET_UINT since the only use in these tools is to set something that has an enum type, that is builtin compatible with unsigned int. Several string constifications were done to make OPT_STRING require a const char * type. Cc: Frédéric Weisbecker <fweisbec@gmail.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Stephane Eranian <eranian@google.com> Cc: Tom Zanussi <tzanussi@gmail.com> LKML-Reference: <new-submission> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
8035458fbb
commit
edb7c60e27
12 changed files with 33 additions and 33 deletions
|
@ -95,7 +95,7 @@ static void dump_suites(int subsys_index)
|
|||
return;
|
||||
}
|
||||
|
||||
static char *bench_format_str;
|
||||
static const char *bench_format_str;
|
||||
int bench_format = BENCH_FORMAT_DEFAULT;
|
||||
|
||||
static const struct option bench_options[] = {
|
||||
|
@ -126,7 +126,7 @@ static void print_usage(void)
|
|||
printf("\n");
|
||||
}
|
||||
|
||||
static int bench_str2int(char *str)
|
||||
static int bench_str2int(const char *str)
|
||||
{
|
||||
if (!str)
|
||||
return BENCH_FORMAT_DEFAULT;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue