Fixed tab vs space

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9279 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Fabio Utzig 2016-04-16 03:13:10 +00:00
parent 8961963e6a
commit 78819b0c79
1 changed files with 2 additions and 2 deletions

View File

@ -686,7 +686,7 @@ void chThdSleepUntil(systime_t time) {
* *
* @param[in] prev absolute system time of the previous deadline * @param[in] prev absolute system time of the previous deadline
* @param[in] next absolute system time of the next deadline * @param[in] next absolute system time of the next deadline
* @return the @p next parameter * @return the @p next parameter
* *
* @api * @api
*/ */
@ -696,7 +696,7 @@ systime_t chThdSleepUntilWindowed(systime_t prev, systime_t next) {
chSysLock(); chSysLock();
time = chVTGetSystemTimeX(); time = chVTGetSystemTimeX();
if (chVTIsTimeWithinX(time, prev, next)) { if (chVTIsTimeWithinX(time, prev, next)) {
chThdSleepS(next - time); chThdSleepS(next - time);
} }
chSysUnlock(); chSysUnlock();