mirror of
https://github.com/Interlisp/maiko.git
synced 2026-03-04 02:15:03 +00:00
Minor cleanup of some casts.
This commit is contained in:
@@ -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)); \
|
||||
} \
|
||||
} \
|
||||
|
||||
Reference in New Issue
Block a user