aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2020-12-03 11:44:52 +0000
committerAndrii Nakryiko <[email protected]>2020-12-03 12:18:02 -0800
commit2faa7328f53b36b2b171501154bba3fd66d8f5da (patch)
tree1442522dd8ec39fc37af1b49452b67cef6615de3
parent58c185b85d0c1753b0b6a9390294bd883faf4d77 (diff)
samples/bpf: Fix spelling mistake "recieving" -> "receiving"
There is a spelling mistake in an error message. Fix it. Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Andrii Nakryiko <[email protected]> Acked-by: Björn Töpel <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
-rw-r--r--samples/bpf/xdpsock_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/bpf/xdpsock_user.c b/samples/bpf/xdpsock_user.c
index 74a578f880b5..568f9815bb1b 100644
--- a/samples/bpf/xdpsock_user.c
+++ b/samples/bpf/xdpsock_user.c
@@ -1570,7 +1570,7 @@ recv_xsks_map_fd(int *xsks_map_fd)
err = recv_xsks_map_fd_from_ctrl_node(sock, xsks_map_fd);
if (err) {
- fprintf(stderr, "Error %d recieving fd\n", err);
+ fprintf(stderr, "Error %d receiving fd\n", err);
return err;
}
return 0;