Fix axis name in serial output (#18522)

This commit is contained in:
Giuliano Zaro 2020-07-03 18:49:16 +02:00 committed by GitHub
parent 90380d5664
commit 7448b65567
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -501,4 +501,4 @@ struct XYZEval {
#undef FI
const xyze_char_t axis_codes { 'X', 'Y', 'Z', 'E' };
#define XYZ_CHAR(A) ('X' + char(A))
#define XYZ_CHAR(A) ((char)('X' + A))