Explorar o código

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

Bright Pan %!s(int64=11) %!d(string=hai) anos
pai
achega
eeadfe4705
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      components/libc/armlibc/stubs.c

+ 2 - 0
components/libc/armlibc/stubs.c

@@ -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)