2022-08-16 17:53:37

by Xin Gao

[permalink] [raw]
Subject: [PATCH] perf parse-events: Variable type completion

'unsigned int' is better than 'unsigned'.

Signed-off-by: Xin Gao <[email protected]>
---
tools/perf/util/pmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/util/pmu.c b/tools/perf/util/pmu.c
index f516d3821d28..bc1230f68341 100644
--- a/tools/perf/util/pmu.c
+++ b/tools/perf/util/pmu.c
@@ -1225,7 +1225,7 @@ static char *pmu_formats_string(struct list_head *formats)
struct perf_pmu_format *format;
char *str = NULL;
struct strbuf buf = STRBUF_INIT;
- unsigned i = 0;
+ unsigned int i = 0;

if (!formats)
return NULL;
--
2.30.2


2022-08-22 15:03:25

by Arnaldo Carvalho de Melo

[permalink] [raw]
Subject: Re: [PATCH] perf parse-events: Variable type completion

Em Wed, Aug 17, 2022 at 01:41:09AM +0800, Xin Gao escreveu:
> 'unsigned int' is better than 'unsigned'.

Thanks, applied.

- Arnaldo


> Signed-off-by: Xin Gao <[email protected]>
> ---
> tools/perf/util/pmu.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/perf/util/pmu.c b/tools/perf/util/pmu.c
> index f516d3821d28..bc1230f68341 100644
> --- a/tools/perf/util/pmu.c
> +++ b/tools/perf/util/pmu.c
> @@ -1225,7 +1225,7 @@ static char *pmu_formats_string(struct list_head *formats)
> struct perf_pmu_format *format;
> char *str = NULL;
> struct strbuf buf = STRBUF_INIT;
> - unsigned i = 0;
> + unsigned int i = 0;
>
> if (!formats)
> return NULL;
> --
> 2.30.2

--

- Arnaldo