mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-15 15:57:13 +00:00
DBPRINT macro does not accept a FILE* as an argument. It expands to printf().
modified: src/vmemsave.c
This commit is contained in:
parent
e360a64c42
commit
ac43bc3755
@ -252,7 +252,7 @@ int size;
|
||||
;
|
||||
|
||||
if (GETWORD(fptr) != FPTOVP_ENTRY) {
|
||||
DBPRINT((stderr, "Couldn't find FPTOVP_ENTRY; not munging\n"));
|
||||
DBPRINT(("Couldn't find FPTOVP_ENTRY; not munging\n"));
|
||||
return;
|
||||
}
|
||||
oldloc = fptr - fptovp;
|
||||
@ -293,7 +293,7 @@ ONE_MORE_TIME: /* Tacky, but why repeat code? */
|
||||
if (dupcount) {
|
||||
qsort(fptovp, size, sizeof(DLword), twowords);
|
||||
oldloc = newloc;
|
||||
DBPRINT((stderr, "%d duplicates found\n", dupcount));
|
||||
DBPRINT(("%d duplicates found\n", dupcount));
|
||||
goto ONE_MORE_TIME;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user