From 78819b0c79322935826a27fa130a64d8d376d0e5 Mon Sep 17 00:00:00 2001 From: Fabio Utzig Date: Sat, 16 Apr 2016 03:13:10 +0000 Subject: Fixed tab vs space git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9279 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/rt/src/chthreads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'os/rt/src/chthreads.c') 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(); -- cgit v1.2.3