From c7bb2fa397156a1ce000fe375acfe82a39d51cb0 Mon Sep 17 00:00:00 2001 From: rbuj Date: Mon, 14 Mar 2022 13:07:15 +0100 Subject: glib-utils: redundant condition --- src/glib-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glib-utils.c b/src/glib-utils.c index 2f9c02e..88b90c9 100644 --- a/src/glib-utils.c +++ b/src/glib-utils.c @@ -363,7 +363,7 @@ eat_spaces (const char *line) { if (line == NULL) return NULL; - while ((*line == ' ') && (*line != 0)) + while (*line == ' ') line++; return line; } -- cgit v1.2.1