Skip to content

Commit

Permalink
libutils: fault_mitigation.h: Fix indentation
Browse files Browse the repository at this point in the history
Indentation with tab instead of space.

Fixes: ce56605 ("core: support fault mitigations in non-threaded code")
Signed-off-by: Alvin Chang <alvinga@andestech.com>
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
  • Loading branch information
gagachang authored and jforissier committed Oct 10, 2023
1 parent 44a7a42 commit 78af2f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/libutils/ext/include/fault_mitigation.h
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ extern struct ftmn_func_arg *__ftmn_global_func_arg;
static inline struct ftmn_func_arg **__ftmn_get_tsd_func_arg_pp(void)
{
#if defined(CFG_FAULT_MITIGATION) && defined(__KERNEL__)
if (thread_get_id_may_fail() >= 0)
if (thread_get_id_may_fail() >= 0)
return &thread_get_tsd()->ftmn_arg;
else
return &thread_get_core_local()->ftmn_arg;
Expand Down

0 comments on commit 78af2f1

Please sign in to comment.