[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240926023823.3632993-1-nichen@iscas.ac.cn>
Date: Thu, 26 Sep 2024 10:38:23 +0800
From: Chen Ni <nichen@...as.ac.cn>
To: andrii@...nel.org,
eddyz87@...il.com,
ast@...nel.org,
daniel@...earbox.net,
martin.lau@...ux.dev,
song@...nel.org,
yonghong.song@...ux.dev,
john.fastabend@...il.com,
kpsingh@...nel.org,
sdf@...ichev.me,
haoluo@...gle.com,
jolsa@...nel.org
Cc: bpf@...r.kernel.org,
linux-kernel@...r.kernel.org,
Chen Ni <nichen@...as.ac.cn>
Subject: [PATCH bpf-next] libbpf: Remove unneeded semicolon
Remove unneeded semicolon in zip_archive_open().
Signed-off-by: Chen Ni <nichen@...as.ac.cn>
---
tools/lib/bpf/zip.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/lib/bpf/zip.c b/tools/lib/bpf/zip.c
index 3f26d629b2b4..88c376a8348d 100644
--- a/tools/lib/bpf/zip.c
+++ b/tools/lib/bpf/zip.c
@@ -223,7 +223,7 @@ struct zip_archive *zip_archive_open(const char *path)
if (!archive) {
munmap(data, size);
return ERR_PTR(-ENOMEM);
- };
+ }
archive->data = data;
archive->size = size;
--
2.25.1
Powered by blists - more mailing lists