提交 eeadfe47 编写于 作者: B Bright Pan

Fix compile warning: variable "c" was declared but never referenced, when...

Fix compile warning: variable "c" was declared but never referenced, when RT_USING_CONSOLE is disable.
上级 9ecd1841
......@@ -224,10 +224,12 @@ char *_sys_command_string(char *cmd, int len)
/* This function writes a character to the console. */
void _ttywrch(int ch)
{
#ifdef RT_USING_CONSOLE
char c;
c = (char)ch;
rt_kprintf(&c);
#endif
}
void _sys_exit(int return_code)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册