diff options
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 {
|