1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-15 15:57:13 +00:00

Fix signature of qsort comparison function.

modified:   src/vmemsave.c
This commit is contained in:
Nick Briggs 2017-06-30 12:42:59 -07:00
parent 06cc0316a0
commit 16583b3b53

View File

@ -236,8 +236,8 @@ LispPTR vmem_save0(LispPTR *args)
/* */
/************************************************************************/
int twowords(DLword *i, DLword *j) /* the difference between two DLwords. */
{ return (*i - *j); }
int twowords(const void *i, const void *j) /* the difference between two DLwords. */
{ return (*(DLword *)i - *(DLword *)j); }
#define FPTOVP_ENTRY (FPTOVP_OFFSET >> 8)