1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 15:18:14 +00:00

Minor cleanup of some casts.

This commit is contained in:
Nick Briggs 2023-01-13 15:43:36 -08:00
parent 336c13369a
commit 6fdb54f2c8

View File

@ -101,8 +101,8 @@ static inline LispPTR GetPosSmallp(unsigned long x) {
int *fixpp; \
/* arg is FIXP, call createcell */ \
fixpp = (int *)createcell68k(TYPE_FIXP); \
*((int *)fixpp) = (int)(arg); \
(result) = (LAddrFromNative(fixpp)); \
*fixpp = (int)(arg); \
(result) = LAddrFromNative(fixpp); \
break; \
} \
} \
@ -117,7 +117,7 @@ static inline LispPTR GetPosSmallp(unsigned long x) {
int *fixpp; \
/* arg is FIXP, call createcell */ \
fixpp = (int *)createcell68k(TYPE_FIXP); \
*fixpp = arg; \
*fixpp = (int)(arg); \
return (LAddrFromNative(fixpp)); \
} \
} \