From 7e7ac27e3d06948058e18638ad4e427e48933e8f Mon Sep 17 00:00:00 2001 From: yunwei37 <1067852565@qq.com> Date: Sat, 4 Nov 2023 15:03:03 +0000 Subject: [PATCH] fix --- src/36-timer-copy/bootstrap.bpf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/36-timer-copy/bootstrap.bpf.c b/src/36-timer-copy/bootstrap.bpf.c index 7ebb572..05534c2 100644 --- a/src/36-timer-copy/bootstrap.bpf.c +++ b/src/36-timer-copy/bootstrap.bpf.c @@ -18,7 +18,7 @@ struct map_elem { struct { __uint(type, BPF_MAP_TYPE_HASH); __uint(max_entries, 1000); - __type(key, int);` + __type(key, int); __type(value, struct map_elem); } hmap SEC(".maps");