From 2864933f8b54c490f6dba1636b959ad9577d9d80 Mon Sep 17 00:00:00 2001 From: Kitaiti Makoto Date: Sat, 23 May 2026 01:26:48 +0900 Subject: [PATCH] Gropu log_queue members --- bindings/ruby/ext/ruby_whisper.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bindings/ruby/ext/ruby_whisper.h b/bindings/ruby/ext/ruby_whisper.h index de0c1e662..fed51a3f4 100644 --- a/bindings/ruby/ext/ruby_whisper.h +++ b/bindings/ruby/ext/ruby_whisper.h @@ -46,12 +46,11 @@ typedef struct ruby_whisper_log { typedef struct ruby_whisper_log_queue { rb_nativethread_lock_t lock; rb_nativethread_cond_t cond; + bool is_active; size_t head; size_t tail; size_t size; - bool is_active; - ruby_whisper_log *logs; } ruby_whisper_log_queue;