Skip to content

Commit

Permalink
net: core: bpf_sk_storage.c: Fix bare usage of unsigned
Browse files Browse the repository at this point in the history
Changed bare usage of unsigned to unsigned int

Signed-off-by: Shubhankar Kuranagatti <[email protected]>
  • Loading branch information
SShubh123 authored and kernel-patches-bot committed Mar 12, 2021
1 parent c0e8ff6 commit 023f577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/core/bpf_sk_storage.c
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ EXPORT_SYMBOL_GPL(bpf_sk_storage_diag_put);
struct bpf_iter_seq_sk_storage_map_info {
struct bpf_map *map;
unsigned int bucket_id;
unsigned skip_elems;
unsigned int skip_elems;
};

static struct bpf_local_storage_elem *
Expand Down

0 comments on commit 023f577

Please sign in to comment.