diff options
Diffstat (limited to 'tools/perf/util/lzma.c')
-rw-r--r-- | tools/perf/util/lzma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/lzma.c b/tools/perf/util/lzma.c index bbcd2ffcf4bd..c355757ed391 100644 --- a/tools/perf/util/lzma.c +++ b/tools/perf/util/lzma.c @@ -120,7 +120,7 @@ bool lzma_is_compressed(const char *input) ssize_t rc; if (fd < 0) - return -1; + return false; rc = read(fd, buf, sizeof(buf)); close(fd); |