Fixes a build error due to a false positive possible uninitialized use warning with GCC 13: util.c: In function 'benchmark': util.c:177:17: error: 'ticks' may be used uninitialized [-Werror=maybe-uninitialized] util.c:161:14: note: 'ticks' was declared here Signed-off-by: Philipp Zabel <p.zabel@xxxxxxxxxxxxxx> --- util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index cdf89b38618a..f199ace3501b 100644 --- a/util.c +++ b/util.c @@ -158,7 +158,7 @@ static uint64_t get_ticks(void) double benchmark(void (*func)(unsigned long n, void *data), void *data) { - uint64_t ticks; + uint64_t ticks = 1; unsigned long n = 1; printf("Benchmarking... "); -- 2.39.2