mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
Remove leftover parens
This commit is contained in:
parent
85584734ce
commit
14c949c1c7
@ -716,7 +716,7 @@ static char *get_config_path(void) {
|
||||
|
||||
wordexp_t p;
|
||||
char *path;
|
||||
for (size_t i = 0; i < (sizeof(config_paths) / sizeof(char *)); ++i) {
|
||||
for (size_t i = 0; i < sizeof(config_paths) / sizeof(char *); ++i) {
|
||||
if (wordexp(config_paths[i], &p, 0) == 0) {
|
||||
path = strdup(p.we_wordv[0]);
|
||||
wordfree(&p);
|
||||
|
Loading…
Reference in New Issue
Block a user