From d6c58f885de23ed55dc27db4448ef98f1140df08 Mon Sep 17 00:00:00 2001 From: Joe George Date: Mon, 6 Jan 2025 17:04:24 -0500 Subject: [PATCH] Fix build --- ruby/src/IceRuby/Endpoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/src/IceRuby/Endpoint.cpp b/ruby/src/IceRuby/Endpoint.cpp index 5bb8859e702..71745238002 100644 --- a/ruby/src/IceRuby/Endpoint.cpp +++ b/ruby/src/IceRuby/Endpoint.cpp @@ -42,7 +42,7 @@ static const rb_data_type_t IceRuby_EndpointType = { VALUE IceRuby::createEndpoint(const Ice::EndpointPtr& p) { - return TypedData_Wrap_Struct(_endpointClass, &IceRuby_Endpoint, new Ice::EndpointPtr(p)); + return TypedData_Wrap_Struct(_endpointClass, &IceRuby_EndpointType, new Ice::EndpointPtr(p)); } extern "C" VALUE