From 71767ea71ed7cf537cdfd2900b035d98a71eed4d Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 26 Jun 2010 09:53:51 +0000 Subject: [PATCH] missing const qualifier git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2041 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- test/test.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.h b/test/test.h index 0815cfcfa..987e361bf 100644 --- a/test/test.h +++ b/test/test.h @@ -84,8 +84,8 @@ extern "C" { #endif msg_t TestThread(void *p); void test_printn(uint32_t n); - void test_print(char *msgp); - void test_println(char *msgp); + void test_print(const char *msgp); + void test_println(const char *msgp); void test_emit_token(char token); bool_t _test_fail(unsigned point); bool_t _test_assert(unsigned point, bool_t condition);