Fixed typo

This commit is contained in:
2025-06-17 09:32:42 +02:00
parent c475beee66
commit 6069aa9194

View File

@ -598,9 +598,8 @@ asynStatus getAxisParamImpl(A *axis, C *controller, const char *indexName,
int (C::*func)(), bool *readValue,
const char *callerFunctionName, int lineNumber,
size_t msgSize, TypeTag<bool>) {
return getAxisParamImpl(axis, indexName, func,
static_cast<int *>(readValue), callerFunctionName,
lineNumber, msgSize);
return getAxisParamImpl(axis, indexName, func, static_cast<*int>(readValue),
callerFunctionName, lineNumber, msgSize);
}
template <typename A, typename C>