From 24251a276804913fb7f8c3222388dbacfb7f07f4 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 8 Sep 2016 07:49:43 -0400 Subject: [PATCH] Negligible indentation fix. --- Storage/Tape/Formats/TapeUEF.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/Tape/Formats/TapeUEF.cpp b/Storage/Tape/Formats/TapeUEF.cpp index 1885096a1..548800b96 100644 --- a/Storage/Tape/Formats/TapeUEF.cpp +++ b/Storage/Tape/Formats/TapeUEF.cpp @@ -310,7 +310,7 @@ void UEF::queue_defined_data(uint32_t length) switch(parity_type) { default: break; - case 'E': queue_bit(parity_value&1); break; + case 'E': queue_bit(parity_value&1); break; case 'O': queue_bit((parity_value&1) ^ 1); break; }