minor fixes of warnings and misspellings

This commit is contained in:
zx
2024-06-07 23:08:49 +03:00
parent ccf473515d
commit 0663d62be8
4 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -307,7 +307,7 @@ int tty_putc(unsigned char ch, int timeout)
int tty_puts(const unsigned char *s, int timeout)
{
return tty_write_timeout(s, strlen(s), timeout);
return tty_write_timeout(s, strlen((char *)s), timeout);
}
int tty_getc(int timeout)