Skip to content

Commit

Permalink
fix(el): Fix an unused parameter usage in eventloop_posix_eth.c
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfr committed Sep 6, 2023
1 parent ef8fbc3 commit cef0680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/eventloop_posix_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cef0680

Please sign in to comment.