1
0
포크 0

print: Add '\r' whenever '\n' appears for actual serial consoles

This commit is contained in:
Aaron Lindsay 2012-09-29 23:24:55 -04:00
부모 ba10785eb9
커밋 375ef2eddf
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@ -122,6 +122,8 @@ int print(char *fmt, ...) {
}
} else {
putc(*c);
if (*c == '\n')
putc('\r');
}
}
va_end(arg);