From 3cf8dfa55e9cc542c93c9167234f31a70ead9174 Mon Sep 17 00:00:00 2001 From: likewise Date: Fri, 23 Apr 2004 15:42:21 +0000 Subject: [PATCH] Indentation white space fix from HEAD. --- src/core/sys.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/core/sys.c b/src/core/sys.c index 657d72a8..f71425e3 100644 --- a/src/core/sys.c +++ b/src/core/sys.c @@ -186,14 +186,13 @@ sys_timeout(u32_t msecs, sys_timeout_handler h, void *arg) } else { for(t = timeouts->next; t != NULL; t = t->next) { timeout->time -= t->time; - if (t->next == NULL || - t->next->time > timeout->time) { - if (t->next != NULL) { - t->next->time -= timeout->time; - } - timeout->next = t->next; - t->next = timeout; - break; + if (t->next == NULL || t->next->time > timeout->time) { + if (t->next != NULL) { + t->next->time -= timeout->time; + } + timeout->next = t->next; + t->next = timeout; + break; } } }