diff options
Diffstat (limited to 'os/rt/include/chmtx.h')
-rw-r--r-- | os/rt/include/chmtx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/rt/include/chmtx.h b/os/rt/include/chmtx.h index a85fb84e7..30367a1ab 100644 --- a/os/rt/include/chmtx.h +++ b/os/rt/include/chmtx.h @@ -63,7 +63,7 @@ struct mutex { mutex_t *m_next; /**< @brief Next @p mutex_t into an
owner-list or @p NULL. */
#if CH_CFG_USE_MUTEXES_RECURSIVE || defined(__DOXYGEN__)
- cnt_t m_taken; /**< @brief Mutex recursion counter. */
+ cnt_t m_cnt; /**< @brief Mutex recursion counter. */
#endif
};
|