mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-14 15:36:34 +00:00
Fix warning for dropping const in cast
This commit is contained in:
parent
e1c4263dd8
commit
2e6aba0d19
@ -205,7 +205,7 @@ LispPTR vmem_save0(LispPTR *args)
|
||||
/************************************************************************/
|
||||
|
||||
int twowords(const void *i, const void *j) /* the difference between two DLwords. */
|
||||
{ return (*(DLword *)i - *(DLword *)j); }
|
||||
{ return (*(const DLword *)i - *(const DLword *)j); }
|
||||
|
||||
#define FPTOVP_ENTRY (FPTOVP_OFFSET >> 8)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user