mirror of
https://github.com/Interlisp/maiko.git
synced 2026-05-02 14:40:45 +00:00
Change local variable name to avoid warnings for shadowing.
modified: inc/arith.h
This commit is contained in:
@@ -174,11 +174,11 @@
|
|||||||
return(S_POSITIVE | arg); \
|
return(S_POSITIVE | arg); \
|
||||||
case 0xFFFF0000: \
|
case 0xFFFF0000: \
|
||||||
return(S_NEGATIVE | (0xFFFF & arg)); \
|
return(S_NEGATIVE | (0xFFFF & arg)); \
|
||||||
default:{register LispPTR *wordp; \
|
default:{register LispPTR *fixpp; \
|
||||||
/* arg is FIXP, call createcell */ \
|
/* arg is FIXP, call createcell */ \
|
||||||
wordp = (LispPTR *) createcell68k(TYPE_FIXP); \
|
fixpp = (LispPTR *) createcell68k(TYPE_FIXP); \
|
||||||
*((int *)wordp) = arg; \
|
*((int *)fixpp) = arg; \
|
||||||
return(LADDR_from_68k(wordp)); \
|
return(LADDR_from_68k(fixpp)); \
|
||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user