diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-28 10:38:32 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-28 10:38:32 +0000 |
commit | d2b17bc167b6168c31ab478a339413d207b51800 (patch) | |
tree | ded4a2d30b0c92467cec2d1055a3463f8085c0ac /test/testheap.c | |
parent | eb75c053eb46cbeb4ad9c0b7b179ba1acb20eba4 (diff) | |
download | ChibiOS-d2b17bc167b6168c31ab478a339413d207b51800.tar.gz ChibiOS-d2b17bc167b6168c31ab478a339413d207b51800.tar.bz2 ChibiOS-d2b17bc167b6168c31ab478a339413d207b51800.zip |
Added the const attribute to the test pattern arrays.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@805 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/testheap.c')
-rw-r--r-- | test/testheap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testheap.c b/test/testheap.c index 0a84b7b33..a72bad6bb 100644 --- a/test/testheap.c +++ b/test/testheap.c @@ -79,7 +79,7 @@ const struct testcase testheap1 = { /*
* Test sequence for heap pattern.
*/
-const struct testcase *patternheap[] = {
+const struct testcase * const patternheap[] = {
#if CH_USE_HEAP
&testheap1,
#endif
|