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:
parent
06cc0316a0
commit
16583b3b53
@ -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)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user