nshlib: Fix warning reported by clang

nsh_telnetlogin.c:62:15: error: implicit conversion from 'int' to 'char' changes value from 255 to -1 [-Werror,-Wconstant-conversion]

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2022-10-17 14:02:31 +08:00 committed by Petro Karashchenko
parent 75455d3788
commit 6944c5a0a1

View File

@ -58,12 +58,12 @@
static void nsh_telnetecho(FAR struct console_stdio_s *pstate,
uint8_t is_use)
{
char optbuf[4];
uint8_t optbuf[4];
optbuf[0] = TELNET_IAC;
optbuf[1] = (is_use == TELNET_USE_ECHO) ? TELNET_WILL : TELNET_DO;
optbuf[2] = 1;
optbuf[3] = 0;
fputs(optbuf, pstate->cn_outstream);
fputs((FAR char *)optbuf, pstate->cn_outstream);
fflush(pstate->cn_outstream);
}