Skip to content

Commit 543bc3d

Browse files
authored
Merge pull request #21 from jwlodek/fix-incorrect-format
Fix formatting for integer values in writeInt32
2 parents c4392f7 + dfb59df commit 543bc3d

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)