mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
system/cu/cu_main.c: Fix wrongly swapped parity options.
This commit is contained in:
parent
c742373efc
commit
f221d33525
1 changed files with 2 additions and 2 deletions
|
|
@ -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':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue