mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
libbpf: Remove unneeded semicolon
Remove unneeded semicolon in zip_archive_open(). Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20240926023823.3632993-1-nichen@iscas.ac.cn Signed-off-by: Alexei Starovoitov <ast@kernel.org>
This commit is contained in:
parent
89abc40803
commit
90d0f736bd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue