From a272a7425df03d2221b459e9ccdb26d3a546744a Mon Sep 17 00:00:00 2001 From: l3utterfly Date: Mon, 29 Jul 2024 22:43:39 +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 fe962ca5c..4d5667884 100644 --- a/ggml/src/ggml.c +++ b/ggml/src/ggml.c @@ -168,7 +168,7 @@ static void ggml_print_backtrace_symbols(void) { const int max = 100; void* buffer[max]; - struct BacktraceState state = {buffer, buffer + max}; + struct backtrace_state state = {buffer, buffer + max}; _Unwind_Backtrace(unwind_callback, &state); int count = state.current - buffer;