From 45b6b799b6c2fe8c57ead551afdcdc09e17df53f Mon Sep 17 00:00:00 2001 From: l3utterfly Date: Mon, 29 Jul 2024 22:43:29 +0900 Subject: [PATCH] Update ggml/src/ggml.c Co-authored-by: slaren --- ggml/src/ggml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml.c b/ggml/src/ggml.c index d26d8b6c7..79e10a439 100644 --- a/ggml/src/ggml.c +++ b/ggml/src/ggml.c @@ -152,7 +152,7 @@ struct backtrace_state { }; static _Unwind_Reason_Code unwind_callback(struct _Unwind_Context* context, void* arg) { - struct BacktraceState* state = (struct BacktraceState*)arg; + struct backtrace_state * state = (struct backtrace_state *)arg; uintptr_t pc = _Unwind_GetIP(context); if (pc) { if (state->current == state->end) {