From 6be7502a606a29d503876b643b543ab0aacdb6e4 Mon Sep 17 00:00:00 2001 From: etiennebarrie <3535+etiennebarrie@users.noreply.github.com> Date: Tue, 3 Mar 2026 11:12:23 +0000 Subject: [PATCH] Automated change: Fix sanity tests --- src/ruby/ext/grpc/rb_call_credentials.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ruby/ext/grpc/rb_call_credentials.c b/src/ruby/ext/grpc/rb_call_credentials.c index f88fe80ab5cc9..047ae3fd83a37 100644 --- a/src/ruby/ext/grpc/rb_call_credentials.c +++ b/src/ruby/ext/grpc/rb_call_credentials.c @@ -407,9 +407,8 @@ void Init_grpc_call_credentials() { * plugin procs alive for as long as their C-level plugins exist. * Stored as an ivar on the class (a GC root via the constant table) * so the marker stays alive without rb_gc_register_address. */ - VALUE plugin_marker = - TypedData_Wrap_Struct(rb_cObject, &grpc_plugin_marker_type, - &active_plugins_states); + VALUE plugin_marker = TypedData_Wrap_Struct( + rb_cObject, &grpc_plugin_marker_type, &active_plugins_states); rb_ivar_set(grpc_rb_cCallCredentials, rb_intern("__plugin_marker"), plugin_marker); }