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; }