git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4176 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2012-05-08 17:28:23 +00:00
parent d0a2e55ed0
commit 2a2b5fd348
1 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ void test_print(const char *msgp) {
void test_println(const char *msgp) {
test_print(msgp);
chSequentialStreamWrite(chp, (const uint8_t *)"\r\n", 1);
chSequentialStreamWrite(chp, (const uint8_t *)"\r\n", 2);
}
/*
@ -311,7 +311,7 @@ static void print_line(void) {
for (i = 0; i < 76; i++)
_putc(chp, '-');
chSequentialStreamWrite(chp, (const uint8_t *)"\r\n", 1);
chSequentialStreamWrite(chp, (const uint8_t *)"\r\n", 2);
}
/**