diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-06 12:09:18 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-06 12:09:18 +0000 |
commit | 9f996a93b0789ed9f7423b59b37de18b14016b3e (patch) | |
tree | dcd5dfdacd93843d04ebfcfd5becc3f2b77fc35e /os/various | |
parent | 8359e7be774c7286686042f0a5e86e862bfeef68 (diff) | |
download | ChibiOS-9f996a93b0789ed9f7423b59b37de18b14016b3e.tar.gz ChibiOS-9f996a93b0789ed9f7423b59b37de18b14016b3e.tar.bz2 ChibiOS-9f996a93b0789ed9f7423b59b37de18b14016b3e.zip |
Fixed bug #897.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10964 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/various')
-rw-r--r-- | os/various/evtimer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/various/evtimer.h b/os/various/evtimer.h index 671e79f99..923d7bfe4 100644 --- a/os/various/evtimer.h +++ b/os/various/evtimer.h @@ -84,7 +84,7 @@ extern "C" { *
* @param[in] etp pointer to an initialized @p event_timer_t structure.
*/
-static inline void vevtStop(event_timer_t *etp) {
+static inline void evtStop(event_timer_t *etp) {
chVTReset(&etp->et_vt);
}
|