From 3d6bc090c87a19c358a8b9025d3a2b62d77ab433 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 28 Jul 2025 14:18:29 +0200 Subject: Tiny cleanup --- src/utils/math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils') diff --git a/src/utils/math.h b/src/utils/math.h index 95ec0aa..9936558 100644 --- a/src/utils/math.h +++ b/src/utils/math.h @@ -137,7 +137,7 @@ intpow(double b, uint64_t e) double r; if (e == 0) - return 1; + return 1.0; r = intpow(b, e/2); -- cgit v1.3