Fixed another calling signature bug

This commit is contained in:
2025-06-18 08:25:39 +02:00
parent e618b39687
commit 55a9fe6f3e

View File

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