mirror of
https://github.com/simh/simh.git
synced 2026-05-05 15:33:34 +00:00
TAPE: Fix incorrect comparison typo.
This commit is contained in:
@@ -2918,7 +2918,7 @@ while (r == SCPE_OK) {
|
|||||||
sim_printf ("Unexpected Space Record Status: %s vs %s\n", sim_tape_error_text (r_s), sim_tape_error_text (r_f));
|
sim_printf ("Unexpected Space Record Status: %s vs %s\n", sim_tape_error_text (r_s), sim_tape_error_text (r_f));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (bc_r != bc_r) {
|
if (bc_s != bc_f) {
|
||||||
sim_printf ("Unexpected Space Record Length: %d vs %d\n", bc_s, bc_f);
|
sim_printf ("Unexpected Space Record Length: %d vs %d\n", bc_s, bc_f);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user