mirror of
https://github.com/swaywm/sway.git
synced 2024-11-21 23:41:27 +00:00
Merge pull request #3411 from RedSoxFan/fix-brace-detect-seeking
config: do not reset pos when braces found
This commit is contained in:
commit
d256182f49
|
@ -613,7 +613,9 @@ static int detect_brace(FILE *file) {
|
|||
}
|
||||
}
|
||||
free(line);
|
||||
fseek(file, pos, SEEK_SET);
|
||||
if (ret == 0) {
|
||||
fseek(file, pos, SEEK_SET);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue