[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <f629797b0b525095352acbf565b48481@208suo.com>
Date: Wed, 14 Jun 2023 16:29:44 +0800
From: baomingtong001@...suo.com
To: ast@...nel.org, daniel@...earbox.net, andrii@...nel.org,
martin.lau@...ux.dev, song@...nel.org, yhs@...com,
john.fastabend@...il.com, kpsingh@...nel.org, sdf@...gle.com,
haoluo@...gle.com, jolsa@...nel.org
Cc: bpf@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] libbpf: zip: Remove unneeded semicolon from
zip_archive_open()
./tools/lib/bpf/zip.c:226:2-3: Unneeded semicolon
Signed-off-by: Mingtong Bao <baomingtong001@...suo.com>
---
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;
Powered by blists - more mailing lists