aboutsummaryrefslogtreecommitdiff
path: root/examples/lua/memleak.lua
diff options
context:
space:
mode:
Diffstat (limited to 'examples/lua/memleak.lua')
-rwxr-xr-xexamples/lua/memleak.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/lua/memleak.lua b/examples/lua/memleak.lua
index 27023aaa..99c15225 100755
--- a/examples/lua/memleak.lua
+++ b/examples/lua/memleak.lua
@@ -26,7 +26,7 @@ struct alloc_info_t {
BPF_HASH(sizes, u64);
BPF_HASH(allocs, u64, struct alloc_info_t);
-BPF_STACK_TRACE(stack_traces, 10240)
+BPF_STACK_TRACE(stack_traces, 10240);
int alloc_enter(struct pt_regs *ctx, size_t size)
{