mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
bpf: Add missing return to resolve_btfids
int sets_patch(struct object *obj) doesn't have a 'return 0' at the end.
Fixes: fbbb68de80
("bpf: Add resolve_btfids tool to resolve BTF IDs in ELF object")
Signed-off-by: Stanislav Fomichev <sdf@google.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20200806155225.637202-1-sdf@google.com
This commit is contained in:
parent
932ac54a3e
commit
d48556f456
@ -566,6 +566,7 @@ static int sets_patch(struct object *obj)
|
||||
|
||||
next = rb_next(next);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int symbols_patch(struct object *obj)
|
||||
|
Loading…
Reference in New Issue
Block a user