From de829e52e9387735e51989f32f4dabf3119eff62 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 31 Mar 2019 09:35:52 -0700 Subject: [PATCH] TAPE: Fix incorrect comparison typo. --- sim_tape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_tape.c b/sim_tape.c index aef64aec..b96f4012 100644 --- a/sim_tape.c +++ b/sim_tape.c @@ -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)); 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); break; }