From 390ed322cb8f40cb9250021cde5f48acb928d291 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 20 Jul 2013 07:24:12 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6001 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/kernel/include/ch.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'os/kernel/include/ch.h') diff --git a/os/kernel/include/ch.h b/os/kernel/include/ch.h index a7cafb581..83d7e423c 100644 --- a/os/kernel/include/ch.h +++ b/os/kernel/include/ch.h @@ -81,22 +81,22 @@ /** * @brief Generic success constant. - * @details This constant is functionally equivalent to @p FALSE but more + * @details This constant is functionally equivalent to @p false but more * readable, it can be used as return value of all those functions - * returning a @p bool_t as a status indicator. + * returning a @p bool as a status indicator. */ #if !defined(CH_SUCCESS) || defined(__DOXYGEN__) -#define CH_SUCCESS FALSE +#define CH_SUCCESS false #endif /** * @brief Generic failure constant. - * @details This constant is functionally equivalent to @p TRUE but more + * @details This constant is functionally equivalent to @p true but more * readable, it can be used as return value of all those functions - * returning a @p bool_t as a status indicator. + * returning a @p bool as a status indicator. */ #if !defined(CH_FAILED) || defined(__DOXYGEN__) -#define CH_FAILED TRUE +#define CH_FAILED true #endif /** @} */ -- cgit v1.2.3