From 55a9fe6f3e02162f71ba54aab2d753066073f5ac Mon Sep 17 00:00:00 2001 From: smathis Date: Wed, 18 Jun 2025 08:25:39 +0200 Subject: [PATCH] Fixed another calling signature bug --- src/sinqAxis.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sinqAxis.h b/src/sinqAxis.h index 1170ef1..cf5584b 100644 --- a/src/sinqAxis.h +++ b/src/sinqAxis.h @@ -601,9 +601,9 @@ asynStatus getAxisParamImpl(A *axis, C *controller, const char *indexName, const char *callerFunctionName, int lineNumber, size_t msgSize, TypeTag) { int readValueInt = 0; - asynStatus status = - getAxisParamImpl(axis, controller, indexName, func, &readValueInt, - callerFunctionName, lineNumber, msgSize); + asynStatus status = getAxisParamImpl(axis, controller, indexName, func, + &readValueInt, callerFunctionName, + lineNumber, msgSize, TypeTag{}); *readValue = readValueInt != 0; return status; }