1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-01 13:58:20 +00:00

Negligible indentation fix.

This commit is contained in:
Thomas Harte 2016-09-08 07:49:43 -04:00
parent 01e5dae512
commit 24251a2768

View File

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