Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
35aaad3ea93a3ebf5bf1667dda7079f4fc23017e...ebc26012ea6ab3acbf17843c5b7298886892bf6f
Commits (1)
Fix weird gcc warning with white-space change (!)
· ebc26012
Rob Swindell
authored
Feb 08, 2022
ebc26012
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/comio/comio_nix.c
src/comio/comio_nix.c
+1
-1
No files found.
src/comio/comio_nix.c
View file @
ebc26012
...
...
@@ -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
)
{
...
...