diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-03 08:48:20 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-03 08:48:20 +0000 |
commit | 9d0c6fb8bf7bf63c137d7c19fdefc7760d2f133a (patch) | |
tree | 86acab83e6b86703239954be6d8240cf49accb8b /test/testdyn.c | |
parent | 156a195bf72bd366f91e03c170ad4b344797778a (diff) | |
download | ChibiOS-9d0c6fb8bf7bf63c137d7c19fdefc7760d2f133a.tar.gz ChibiOS-9d0c6fb8bf7bf63c137d7c19fdefc7760d2f133a.tar.bz2 ChibiOS-9d0c6fb8bf7bf63c137d7c19fdefc7760d2f133a.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6250 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/testdyn.c')
-rw-r--r-- | test/testdyn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testdyn.c b/test/testdyn.c index 3eb3304d5..cd73e73ce 100644 --- a/test/testdyn.c +++ b/test/testdyn.c @@ -188,9 +188,9 @@ ROMCONST struct testcase testdyn2 = { * coverage.
*/
-static bool_t regfind(thread_t *tp) {
+static bool regfind(thread_t *tp) {
thread_t *ftp;
- bool_t found = FALSE;
+ bool found = false;
ftp = chRegFirstThread();
do {
|