diff options
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -490,7 +490,7 @@ dwb_navigation_new_from_line(const char *text) { Navigation *nv = NULL; if (text == NULL) return NULL; - while (g_ascii_isspace(*text)) + while (isspace((int)*text)) text++; if (*text != '\0') { |