diff options
author | Fabio Utzig <utzig@utzig.org> | 2016-04-16 03:13:10 +0000 |
---|---|---|
committer | Fabio Utzig <utzig@utzig.org> | 2016-04-16 03:13:10 +0000 |
commit | 78819b0c79322935826a27fa130a64d8d376d0e5 (patch) | |
tree | 6ee1a3a32918f3af555edd09fc0f8cf23e6a9691 | |
parent | 8961963e6a21d3be99919d1567e8cbc4e9f8a412 (diff) | |
download | ChibiOS-78819b0c79322935826a27fa130a64d8d376d0e5.tar.gz ChibiOS-78819b0c79322935826a27fa130a64d8d376d0e5.tar.bz2 ChibiOS-78819b0c79322935826a27fa130a64d8d376d0e5.zip |
Fixed tab vs space
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9279 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/rt/src/chthreads.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/rt/src/chthreads.c b/os/rt/src/chthreads.c index c9cbfac0d..177d515b7 100644 --- a/os/rt/src/chthreads.c +++ b/os/rt/src/chthreads.c @@ -686,7 +686,7 @@ void chThdSleepUntil(systime_t time) { *
* @param[in] prev absolute system time of the previous deadline
* @param[in] next absolute system time of the next deadline
- * @return the @p next parameter
+ * @return the @p next parameter
*
* @api
*/
@@ -696,7 +696,7 @@ systime_t chThdSleepUntilWindowed(systime_t prev, systime_t next) { chSysLock();
time = chVTGetSystemTimeX();
if (chVTIsTimeWithinX(time, prev, next)) {
- chThdSleepS(next - time);
+ chThdSleepS(next - time);
}
chSysUnlock();
|