Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Jan 6, 2025
1 parent f447612 commit d6c58f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ruby/src/IceRuby/Endpoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d6c58f8

Please sign in to comment.