summaryrefslogtreecommitdiff
path: root/input_gadgets.c
diff options
context:
space:
mode:
Diffstat (limited to 'input_gadgets.c')
-rw-r--r--input_gadgets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/input_gadgets.c b/input_gadgets.c
index 02e1e98..d598f84 100644
--- a/input_gadgets.c
+++ b/input_gadgets.c
@@ -934,7 +934,7 @@ char *gadgets_retrieve_weather_warnings(char *output, int max_len)
}
if (warnings[i].expires < time(NULL) + warnings_future_timespan) {
if (output + max_len - ende > 0)
- ende += snprintf(ende, output + max_len - ende, " bis");
+ ende += snprintf(ende, output + max_len - ende, " bis ");
ende += adaptive_strftime(ende, output + max_len - ende, localtime(&warnings[i].expires));
}
if ((i+1<warnings_len) && (output + max_len - ende > 0))