From 280f90fa5b905c5140d60957324d1444a5d05789 Mon Sep 17 00:00:00 2001 From: Kitaiti Makoto Date: Mon, 15 Jun 2026 03:15:56 +0900 Subject: [PATCH] Fix instance variable name --- bindings/ruby/ext/ruby_whisper_params.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/ruby/ext/ruby_whisper_params.c b/bindings/ruby/ext/ruby_whisper_params.c index 4468b4348..94f10c38d 100644 --- a/bindings/ruby/ext/ruby_whisper_params.c +++ b/bindings/ruby/ext/ruby_whisper_params.c @@ -336,7 +336,7 @@ check_thread_safety(ruby_whisper_params *rwp, int n_processors) rb_raise(rb_eRuntimeError, "abort callback not supported on parallel transcription"); } - VALUE log_callback = rb_iv_get(mWhisper, "log_callback"); + VALUE log_callback = rb_iv_get(mWhisper, "@log_callback"); if (!NIL_P(log_callback)) { rb_raise(rb_eRuntimeError, "log callback not supported for parallel transcription"); }