From e7f43178c0c437dae9eb0d1e6a199be981ab265e Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Mon, 27 Oct 2025 21:46:04 -0500 Subject: [PATCH] node.cpp --- libfuse/lib/node.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libfuse/lib/node.cpp b/libfuse/lib/node.cpp index 3fd23a95..d7077236 100644 --- a/libfuse/lib/node.cpp +++ b/libfuse/lib/node.cpp @@ -13,8 +13,8 @@ struct stack_t struct StackInfo { - stack_t &stack; - bool &should_gc; + stack_t *stack; + bool *should_gc; }; thread_local static stack_t *g_stack = NULL;