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:
parent
336c13369a
commit
6fdb54f2c8
@ -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)); \
|
||||
} \
|
||||
} \
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user