Fixed function call arguments in template

This commit is contained in:
2025-06-18 08:15:34 +02:00
parent 41dfd1de5a
commit e618b39687

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;