From e618b39687953abf2c1038cc33c50c8d3a8432cf Mon Sep 17 00:00:00 2001 From: smathis Date: Wed, 18 Jun 2025 08:15:34 +0200 Subject: [PATCH] Fixed function call arguments in template --- src/sinqAxis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sinqAxis.h b/src/sinqAxis.h index 834e955..1170ef1 100644 --- a/src/sinqAxis.h +++ b/src/sinqAxis.h @@ -602,7 +602,7 @@ asynStatus getAxisParamImpl(A *axis, C *controller, const char *indexName, size_t msgSize, TypeTag) { int readValueInt = 0; asynStatus status = - getAxisParamImpl(axis, indexName, func, &readValueInt, + getAxisParamImpl(axis, controller, indexName, func, &readValueInt, callerFunctionName, lineNumber, msgSize); *readValue = readValueInt != 0; return status;