From 2ab23546eaa7149d1ed8296d8e735fc06dac65a0 Mon Sep 17 00:00:00 2001 From: dingusdev <52434309+dingusdev@users.noreply.github.com> Date: Sun, 8 Sep 2024 15:22:04 -0700 Subject: [PATCH] One-line fix-up --- cpu/ppc/ppcopcodes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/ppc/ppcopcodes.cpp b/cpu/ppc/ppcopcodes.cpp index 5dd4689..7c34ce2 100644 --- a/cpu/ppc/ppcopcodes.cpp +++ b/cpu/ppc/ppcopcodes.cpp @@ -84,7 +84,7 @@ void do_ctx_sync() { } } -static void add_ctx_sync_action(const CtxSyncCallback& cb) { +void add_ctx_sync_action(const CtxSyncCallback& cb) { gCtxSyncCallbacks.push_back(cb); }