From cef068026ce7025b616894bfd94bc8a4cac704e4 Mon Sep 17 00:00:00 2001 From: Julius Pfrommer Date: Wed, 6 Sep 2023 10:49:44 +0200 Subject: [PATCH] fix(el): Fix an unused parameter usage in eventloop_posix_eth.c --- arch/eventloop_posix_eth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/eventloop_posix_eth.c b/arch/eventloop_posix_eth.c index 4ed043db092..66dfba48501 100644 --- a/arch/eventloop_posix_eth.c +++ b/arch/eventloop_posix_eth.c @@ -580,7 +580,7 @@ ETH_openConnection(UA_ConnectionManager *cm, const UA_KeyValueMap *params, /* Validate the parameters */ UA_StatusCode res = UA_KeyValueRestriction_validate(el->eventLoop.logger, "ETH", ETHConfigParameters, - ETH_PARAMETERSSIZE, params); + ethParams, params); if(res != UA_STATUSCODE_GOOD) { UA_UNLOCK(&el->elMutex); return res;