From 37c94ec64bc79a04f995082a8d0aa47bda9e366a Mon Sep 17 00:00:00 2001 From: Marten Lohstroh Date: Thu, 25 May 2023 21:55:50 -0700 Subject: [PATCH] Apply suggestions from code review --- core/platform/lf_zephyr_support.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/platform/lf_zephyr_support.c b/core/platform/lf_zephyr_support.c index ca7654b8c..9dbf40c04 100644 --- a/core/platform/lf_zephyr_support.c +++ b/core/platform/lf_zephyr_support.c @@ -416,11 +416,11 @@ int lf_thread_create(lf_thread_t* thread, void *(*lf_thread) (void *), void* arg // Pass the pointer to the k_thread struct out. This is needed - // to join on the thread later + // to join on the thread later. *thread = &threads[tid]; // Increment the tid counter so that next call to `lf_thread_create` - // uses the next available k_thread struct and stack + // uses the next available k_thread struct and stack. tid++;