Fix TCP echo posix demo warnings (#1031)

* fix warnings

* update naming

* updating +TCP to latest

* review comments fix
This commit is contained in:
Tony Josi 2023-07-17 19:08:42 +05:30 committed by GitHub
parent 69cd9f0b3e
commit 3be041eacb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 4 deletions

View file

@ -227,7 +227,9 @@ void traceOnEnter()
/* clear the buffer */
char buffer[ 1 ];
read( STDIN_FILENO, &buffer, 1 );
size_t xReadRet;
xReadRet = read( STDIN_FILENO, &buffer, 1 );
( void ) xReadRet;
}
}