Compare commits

...

1 Commits
1.2.0 ... 1.2.1

Author SHA1 Message Date
e618b39687 Fixed function call arguments in template 2025-06-18 08:15:34 +02:00

View File

@ -602,7 +602,7 @@ asynStatus getAxisParamImpl(A *axis, C *controller, const char *indexName,
size_t msgSize, TypeTag<bool>) {
int readValueInt = 0;
asynStatus status =
getAxisParamImpl(axis, indexName, func, &readValueInt,
getAxisParamImpl(axis, controller, indexName, func, &readValueInt,
callerFunctionName, lineNumber, msgSize);
*readValue = readValueInt != 0;
return status;