Commit aeb36988 authored by Brenden Blanco's avatar Brenden Blanco

Fix syntax error in bpf_get_prandom_u32

Fixes: #398
Signed-off-by: default avatarBrenden Blanco <bblanco@plumgrid.com>
parent 13e74d30
...@@ -123,7 +123,7 @@ static int (*bpf_probe_read)(void *dst, u64 size, void *unsafe_ptr) = ...@@ -123,7 +123,7 @@ static int (*bpf_probe_read)(void *dst, u64 size, void *unsafe_ptr) =
(void *) BPF_FUNC_probe_read; (void *) BPF_FUNC_probe_read;
static u64 (*bpf_ktime_get_ns)(void) = static u64 (*bpf_ktime_get_ns)(void) =
(void *) BPF_FUNC_ktime_get_ns; (void *) BPF_FUNC_ktime_get_ns;
static u32 (*bpf_get_prandom_u32) = static u32 (*bpf_get_prandom_u32)(void) =
(void *) BPF_FUNC_get_prandom_u32; (void *) BPF_FUNC_get_prandom_u32;
static int (*bpf_trace_printk_)(const char *fmt, u64 fmt_size, ...) = static int (*bpf_trace_printk_)(const char *fmt, u64 fmt_size, ...) =
(void *) BPF_FUNC_trace_printk; (void *) BPF_FUNC_trace_printk;
......
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