Remove leftover parens

This commit is contained in:
Brian Ashworth 2018-07-13 21:23:18 -04:00
parent 85584734ce
commit 14c949c1c7
1 changed files with 1 additions and 1 deletions

View File

@ -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);