mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-27 04:12:51 +00:00
Fix signature of qsort comparison function.
modified: src/vmemsave.c
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user