From 4c3cd7fde636946bb806d9b2d025c59418fa4e85 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 6 Mar 2025 16:57:49 +0100 Subject: style and some minor fixes 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 | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'src/location-manual.c') diff --git a/src/location-manual.c b/src/location-manual.c index f59bddd..14a0aad 100644 --- a/src/location-manual.c +++ b/src/location-manual.c @@ -37,11 +37,8 @@ location_manual_init(struct location_state **state) static int location_manual_start(struct location_state *state) { - /* Latitude and longitude must be set */ - if (isnan(state->loc.lat) || isnan(state->loc.lon)) { - fputs(_("Latitude and longitude must be set.\n"), stderr); - exit(EXIT_FAILURE); - } + if (isnan(state->loc.lat) || isnan(state->loc.lon)) + eprintf(_("Latitude and longitude must be set.")); return 0; } @@ -68,8 +65,7 @@ location_manual_print_help(FILE *f) } static int -location_manual_set_option(struct location_state *state, const char *key, - const char *value) +location_manual_set_option(struct location_state *state, const char *key, const char *value) { /* Parse float value */ char *end; @@ -77,8 +73,8 @@ location_manual_set_option(struct location_state *state, const char *key, errno = 0; v = strtod(value, &end); - if (errno != 0 || *end != '\0') { - fputs(_("Malformed argument.\n"), stderr); + if (errno || *end) { + weprintf(_("Malformed argument.")); return -1; } @@ -87,7 +83,7 @@ location_manual_set_option(struct location_state *state, const char *key, } else if (!strcasecmp(key, "lon")) { state->loc.lon = v; } else { - weprintf(_("Unknown method parameter: `%s'.\n"), key); + weprintf(_("Unknown method parameter: `%s'."), key); return -1; } -- cgit v1.2.3-70-g09d2