From aabc493e26763d3250dca701c1ea76f2617dceb6 Mon Sep 17 00:00:00 2001 From: "Jonas Ohland (Riedel)" Date: Fri, 5 Jun 2026 15:21:17 +0200 Subject: [PATCH] Fix inconsistent struct naming Co-authored-by: Jonas Ohland Signed-off-by: Jonas Ohland (Riedel) --- lib/fabrics/include/mxl/fabrics.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/fabrics/include/mxl/fabrics.h b/lib/fabrics/include/mxl/fabrics.h index aeb0d128..0678b739 100644 --- a/lib/fabrics/include/mxl/fabrics.h +++ b/lib/fabrics/include/mxl/fabrics.h @@ -73,19 +73,19 @@ extern "C" } mxlFabricsInterfaceCapFlags; /** Capabilities of an interface */ - typedef struct mxlFabricsCaps_t + typedef struct mxlFabricsInterfaceCaps_t { int version; /**< Struct version, must be set to MXL_FABRICS_API_VERSION by the caller. */ uint64_t flags; /**< Capabilities expressed as binary flags. Value can be a bitset of any of mxlFabricsInterfaceCapFlags */ uint64_t maxMessageSize; /**< Maximum message size supported on this interface. */ - } mxlFabricsCaps; + } mxlFabricsInterfaceCaps; /** Fabric interface configuration */ typedef struct mxlFabricsInterfaceConfig_t { int version; /**< Struct version, must be set to MXL_FABRICS_API_VERSION by the caller. */ mxlFabricsProvider provider; /**< The provider that the interface can be used with */ - mxlFabricsCaps caps; /**< Interface capabilities */ + mxlFabricsInterfaceCaps caps; /**< Interface capabilities */ mxlFabricsEndpointAddress address; /**< Address (node/service) of this interface */ /**