mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-01 22:32:40 +00:00
Clean up abuse of comma operator as statement separator in vmemsave.c
This commit is contained in:
@@ -410,7 +410,7 @@ LispPTR vmem_save(char *sysout_file_name)
|
||||
|
||||
/* Now, let's see how many pages we can dump */
|
||||
while (GETFPTOVP(fptovp, i) == oldfptovp && i < vmemsize) {
|
||||
contig_pages++, oldfptovp++, i++;
|
||||
contig_pages++; oldfptovp++; i++;
|
||||
}
|
||||
i--; /* Previous loop always overbumps i */
|
||||
DBPRINT(("%4d: writing %d pages from %tx (%d)\n", i, contig_pages, base_addr - (char *)Lisp_world, saveoldfptovp));
|
||||
|
||||
Reference in New Issue
Block a user