diff options
author | Mark Stapp <mjs@voltanet.io> | 2021-02-18 15:41:38 +0100 |
---|---|---|
committer | Mark Stapp <mjs@voltanet.io> | 2021-02-18 15:41:38 +0100 |
commit | a5824290085256c3d8e7b16221688ee969ad6d58 (patch) | |
tree | 8f2168207200f659fb261b213c70055f5584e166 | |
parent | Merge pull request #8101 from idryzhov/staticd-fixes (diff) | |
download | frr-a5824290085256c3d8e7b16221688ee969ad6d58.tar.xz frr-a5824290085256c3d8e7b16221688ee969ad6d58.zip |
lib: small code cleanup in thread.c
Fix an indentation in thread.c.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
-rw-r--r-- | lib/thread.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/thread.c b/lib/thread.c index e0d734a95..e8e717634 100644 --- a/lib/thread.c +++ b/lib/thread.c @@ -58,8 +58,7 @@ static int thread_timer_cmp(const struct thread *a, const struct thread *b) return 0; } -DECLARE_HEAP(thread_timer_list, struct thread, timeritem, - thread_timer_cmp) +DECLARE_HEAP(thread_timer_list, struct thread, timeritem, thread_timer_cmp) #if defined(__APPLE__) #include <mach/mach.h> |