Commit 4c38f74c authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Daniel Borkmann

samples/bpf: Fix trailing semicolon

The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.
Signed-off-by: default avatarLuis de Bethencourt <luisbg@kernel.org>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
parent 0fe875c5
...@@ -104,7 +104,7 @@ struct xdp_exception_ctx { ...@@ -104,7 +104,7 @@ struct xdp_exception_ctx {
SEC("tracepoint/xdp/xdp_exception") SEC("tracepoint/xdp/xdp_exception")
int trace_xdp_exception(struct xdp_exception_ctx *ctx) int trace_xdp_exception(struct xdp_exception_ctx *ctx)
{ {
u64 *cnt;; u64 *cnt;
u32 key; u32 key;
key = ctx->act; key = ctx->act;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment