From 2a2b5fd348d9fcb9c1c996ea6e7ea7d362f0e9c4 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 8 May 2012 17:28:23 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4176 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- test/test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.c b/test/test.c index 09596e592..beb0bfd3b 100644 --- a/test/test.c +++ b/test/test.c @@ -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); } /**