From ebc26012ea6ab3acbf17843c5b7298886892bf6f Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Tue, 8 Feb 2022 00:07:22 -0800 Subject: [PATCH] Fix weird gcc warning with white-space change (!) --- src/comio/comio_nix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comio/comio_nix.c b/src/comio/comio_nix.c index 0d03aeee80..ca3a37685f 100644 --- a/src/comio/comio_nix.c +++ b/src/comio/comio_nix.c @@ -365,7 +365,7 @@ BOOL comSetBits(COM_HANDLE handle, size_t byteSize, size_t stopBits) struct termios t; if(tcgetattr(handle, &t)==-1) - return FALSE; + return FALSE; t.c_cflag &= ~CSIZE; switch(byteSize) { -- GitLab