mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-21 01:57:49 +00:00
Clean up abuse of comma operator as statement separator in vmemsave.c
This commit is contained in:
parent
1c5881fad4
commit
c49eb4a4ce
@ -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));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user