From a94083e77d6258bbf9b8b5388a82af9498c923e9 Mon Sep 17 00:00:00 2001 From: Eric Katzfey <53063038+katzfey@users.noreply.github.com> Date: Sat, 14 Jun 2025 11:24:31 -0700 Subject: [PATCH] Removed extraneous parentheses to resolve compiler warning (#14441) --- src/main/cli/cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/cli/cli.c b/src/main/cli/cli.c index e12cae2ae6..0090b0fa3f 100644 --- a/src/main/cli/cli.c +++ b/src/main/cli/cli.c @@ -1628,7 +1628,7 @@ static void cliSerialPassthrough(const char *cmdName, char *cmdline) cliPrintLinef("Forwarding, power cycle %sto exit.", resetMessage); - if ((ports[1].id == SERIAL_PORT_USB_VCP)) { + if (ports[1].id == SERIAL_PORT_USB_VCP) { do { if (port1ResetOnDtr) { serialSetCtrlLineStateCb(ports[1].port, cbCtrlLine_reset, NULL);