TAPE: Fix incorrect comparison typo.
This commit is contained in:
parent
d022ea42a1
commit
de829e52e9
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue