From f0b7fc1ecb80cb34a45e60d07e9c53745b251686 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 5 Mar 2025 20:02:05 +0100 Subject: Just use double, no mixing in float MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/location-manual.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/location-manual.c') diff --git a/src/location-manual.c b/src/location-manual.c index 0048128..b07ca4f 100644 --- a/src/location-manual.c +++ b/src/location-manual.c @@ -79,7 +79,7 @@ location_manual_set_option(struct location_state *state, const char *key, /* Parse float value */ char *end; errno = 0; - float v = strtof(value, &end); + double v = strtod(value, &end); if (errno != 0 || *end != '\0') { fputs(_("Malformed argument.\n"), stderr); return -1; -- cgit v1.2.3-70-g09d2