From 1a394709eb9c7280859d15b3617a25c6c40f36b7 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 17 Jul 2025 16:16:24 -0500 Subject: [PATCH] bsps/or1k/generic_or1k/btimer/btimer.c: Address misleading indentation GCC warned that the indentation was misleading. --- bsps/or1k/generic_or1k/btimer/btimer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsps/or1k/generic_or1k/btimer/btimer.c b/bsps/or1k/generic_or1k/btimer/btimer.c index d0c2cde733..316a896181 100644 --- a/bsps/or1k/generic_or1k/btimer/btimer.c +++ b/bsps/or1k/generic_or1k/btimer/btimer.c @@ -73,7 +73,7 @@ benchmark_timer_t benchmark_timer_read( void ) if ( total < LEAST_VALID ) return 0; /* below timer resolution */ - return (total - AVG_OVERHEAD); + return (total - AVG_OVERHEAD); } }