diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-06-26 09:53:51 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-06-26 09:53:51 +0000 |
commit | 71767ea71ed7cf537cdfd2900b035d98a71eed4d (patch) | |
tree | 865e17b1aa7a6743b50177e4c0da617b64d69241 /test | |
parent | 88bea4b8c200fad936c063718289250ce49cda61 (diff) | |
download | ChibiOS-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')
-rw-r--r-- | test/test.h | 4 |
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);
|