diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/glib-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |