We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ef7086 commit 27c5a90Copy full SHA for 27c5a90
1 file changed
src/emc/kinematics/trtfuncs.c
@@ -120,7 +120,7 @@ int trtKinematicsSetup(const int comp_id,
120
for (jno=0; jno<EMCMOT_MAX_JOINTS; jno++) {
121
if (axis_idx_for_jno[jno] == -1) break; //fini
122
rtapi_print(" Joint %d ==> Axis %c\n",
123
- jno,*("XYZABCUVW"+axis_idx_for_jno[jno]));
+ jno,"XYZABCUVW"[axis_idx_for_jno[jno]]);
124
}
125
126
haldata = hal_malloc(sizeof(struct haldata));
0 commit comments