diff options
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sway/config.c b/sway/config.c index 44943769..bde65614 100644 --- a/sway/config.c +++ b/sway/config.c @@ -186,10 +186,9 @@ bool read_config(FILE *file, bool is_active) { int temp_depth = 0; // Temporary: skip all config sections with depth while (!feof(file)) { - int _; char *line = read_line(file); - line = strip_comments(line); - line = strip_whitespace(line, &_); + strip_comments(line); + strip_whitespace(line); if (!line[0]) { goto _continue; } |