1
0
mirror of https://github.com/PDP-10/klh10.git synced 2026-02-06 00:15:26 +00:00

Remove extra arguments to printf().

These are presumably block numbers but they get printed earlier anyway.
This commit is contained in:
Olaf Seibert
2015-07-18 02:20:29 +02:00
parent 5365b5845a
commit 4a29858bbf

View File

@@ -1348,7 +1348,7 @@ dev_boot(FILE *of,
return FALSE;
if (op10m_camn(vm_pget(vp), w6hom)) {
if (of) fprintf(of, "Bad HOM check, val = %lo,,%lo\n",
1, (long)LHGET(w), (long)RHGET(w));
(long)LHGET(w), (long)RHGET(w));
return FALSE;
}
if (of) fprintf(of, "OK\nReading HOM sector 010 ...");
@@ -1357,7 +1357,7 @@ dev_boot(FILE *of,
return FALSE;
if (op10m_camn(vm_pget(vp), w6hom)) {
if (of) fprintf(of, "Bad HOM check, val = %lo,,%lo\n",
010, (long)LHGET(w), (long)RHGET(w));
(long)LHGET(w), (long)RHGET(w));
return FALSE;
}
w = vm_pget(vm_physmap(FE_BOOTLOC+0103)); /* Get ptrs pag addr */