Update ggml/src/ggml.c

Co-authored-by: slaren <slarengh@gmail.com>
This commit is contained in:
l3utterfly 2024-07-29 22:43:29 +09:00 committed by GitHub
parent 8a3eceba0c
commit 45b6b799b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) {