aboutsummaryrefslogtreecommitdiffstats
path: root/test/test.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-06-26 09:53:51 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-06-26 09:53:51 +0000
commit71767ea71ed7cf537cdfd2900b035d98a71eed4d (patch)
tree865e17b1aa7a6743b50177e4c0da617b64d69241 /test/test.h
parent88bea4b8c200fad936c063718289250ce49cda61 (diff)
downloadChibiOS-71767ea71ed7cf537cdfd2900b035d98a71eed4d.tar.gz
ChibiOS-71767ea71ed7cf537cdfd2900b035d98a71eed4d.tar.bz2
ChibiOS-71767ea71ed7cf537cdfd2900b035d98a71eed4d.zip
missing const qualifier
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2041 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/test.h')
-rw-r--r--test/test.h4
1 files 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);