Re: [PATCH] perf tools: Fix bool return value in gzip_is_compressed()

From: Arnaldo Carvalho de Melo

Date: Tue Oct 14 2025 - 14:34:10 EST


On Tue, Oct 14, 2025 at 03:25:46PM -0300, Arnaldo Carvalho de Melo wrote:
> On Sat, Oct 11, 2025 at 11:48:56AM +0800, Mi, Dapeng wrote:
> > > +++ b/tools/perf/util/zlib.c
> > > @@ -88,7 +88,7 @@ bool gzip_is_compressed(const char *input)
> > > if (fd < 0)
> > > - return -1;
> > > + return false;
>
> > Reviewed-by: Dapeng Mi <dapeng1.mi@xxxxxxxxxxxxxxx>

> Reviewed-by: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>

Sorry for the noise, I merged this already, it is already in 6.18-rc1 :-\

- Arnaldo