From f221d33525de241c1eff185c346af8cb29c0d3cd Mon Sep 17 00:00:00 2001 From: Oleg Evseev Date: Fri, 13 Mar 2020 22:53:53 +0000 Subject: [PATCH] system/cu/cu_main.c: Fix wrongly swapped parity options. --- system/cu/cu_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/cu/cu_main.c b/system/cu/cu_main.c index 5311ffc34..2c91d427c 100644 --- a/system/cu/cu_main.c +++ b/system/cu/cu_main.c @@ -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':