Merge pull request #806 from geertu/bios-improvements

Bios improvements
This commit is contained in:
enjoy-digital 2021-02-09 09:24:35 +01:00 committed by GitHub
commit b9bc1d8457
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View File

@ -190,7 +190,7 @@ int readline(char *buf, int len)
unsigned int eol_num = 0;
unsigned int wlen;
int insert = 1;
char ichar;
unsigned char ichar;
#ifndef TERM_NO_COMPLETE
char tmp;

View File

@ -75,10 +75,7 @@ int readchar_nonblock(void)
int puts(const char *s)
{
while(*s) {
putchar(*s);
s++;
}
putsnonl(s);
putchar('\n');
return 1;
}