1
0
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:
Nick Briggs 2022-12-23 17:44:28 -08:00
parent e1c4263dd8
commit 2e6aba0d19

View File

@ -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)