Skip to content

Commit dfb59df

Browse files
committed
Fix formatting for integer values in writeInt32
1 parent c4392f7 commit dfb59df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kinetixApp/src/ADKinetix.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,9 +1128,9 @@ asynStatus ADKinetix::writeInt32(asynUser *pasynUser, epicsInt32 value) {
11281128
callParamCallbacks();
11291129

11301130
if (status != asynSuccess) {
1131-
ERR_ARGS("error, status=%d function=%d, value=%f", status, function, value);
1131+
ERR_ARGS("error, status=%d function=%d, value=%d", status, function, value);
11321132
} else {
1133-
DEBUG_ARGS("function=%d, value=%f", function, value);
1133+
DEBUG_ARGS("function=%d, value=%d", function, value);
11341134
}
11351135

11361136
return status;

0 commit comments

Comments
 (0)