aboutsummaryrefslogtreecommitdiffstats
path: root/ui/time_shift.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/time_shift.c')
-rw-r--r--ui/time_shift.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/time_shift.c b/ui/time_shift.c
index 177a11b935..3363c50f40 100644
--- a/ui/time_shift.c
+++ b/ui/time_shift.c
@@ -25,7 +25,6 @@
#include <stdio.h>
#include <string.h>
-#include <ctype.h>
#include <math.h>
#include <glib.h>
@@ -138,7 +137,7 @@ time_string_parse(const gchar *time_text, int *year, int *month, int *day, gbool
return "Unable to convert time.";
/* strip whitespace */
- while (isspace(pts[0]))
+ while (g_ascii_isspace(pts[0]))
++pts;
if (year && month && day) {