1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-06 00:14:43 +00:00

Fix some unused variable warnings. (#162)

This commit is contained in:
Bruce Mitchener
2021-01-04 01:30:04 +07:00
committed by GitHub
parent 4d00e0b2a1
commit 907e86c8d9
21 changed files with 30 additions and 48 deletions

View File

@@ -318,7 +318,6 @@ LispPTR vmem_save(char *sysout_file_name)
int vmemsize; /* VMEMSIZE */
register int i;
char tempname[MAXPATHLEN];
char *cp;
register int rval;
DLword *bmptr;
#ifndef DOS
@@ -415,7 +414,9 @@ LispPTR vmem_save(char *sysout_file_name)
for (i = 0; i < vmemsize; i++) {
if (GETPAGEOK(fptovp, i) != 0177777) {
int oldfptovp = GETFPTOVP(fptovp, i);
#ifdef DEBUG
int saveoldfptovp = oldfptovp;
#endif
int contig_pages = 0;
register char *base_addr;