system/cu/cu_main.c: Fix wrongly swapped parity options.

This commit is contained in:
Oleg Evseev 2020-03-13 22:53:53 +00:00 committed by patacongo
parent c742373efc
commit f221d33525

View File

@ -304,11 +304,11 @@ int main(int argc, FAR char *argv[])
break;
case 'e':
parity = PARITY_ODD;
parity = PARITY_EVEN;
break;
case 'o':
parity = PARITY_EVEN;
parity = PARITY_ODD;
break;
case 'r':