aboutsummaryrefslogtreecommitdiffstats
path: root/src/location-manual.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-06 16:57:49 +0100
committerMattias Andrée <m@maandree.se>2025-03-06 16:57:49 +0100
commit4c3cd7fde636946bb806d9b2d025c59418fa4e85 (patch)
tree5fccfab94b4ee535c4627be80a9ea92e5ae291b2 /src/location-manual.c
parentStyle (diff)
downloadredshift-ng-4c3cd7fde636946bb806d9b2d025c59418fa4e85.tar.gz
redshift-ng-4c3cd7fde636946bb806d9b2d025c59418fa4e85.tar.bz2
redshift-ng-4c3cd7fde636946bb806d9b2d025c59418fa4e85.tar.xz
style and some minor fixes
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/location-manual.c')
-rw-r--r--src/location-manual.c16
1 files changed, 6 insertions, 10 deletions
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;
}