Remove int cast after changing to size_t
This commit is contained in:
parent
e1ddb4373f
commit
bd4a8e0673
2
main.c
2
main.c
@ -716,7 +716,7 @@ static char *get_config_path(void) {
|
|||||||
|
|
||||||
wordexp_t p;
|
wordexp_t p;
|
||||||
char *path;
|
char *path;
|
||||||
for (size_t i = 0; i < (int)(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) {
|
if (wordexp(config_paths[i], &p, 0) == 0) {
|
||||||
path = strdup(p.we_wordv[0]);
|
path = strdup(p.we_wordv[0]);
|
||||||
wordfree(&p);
|
wordfree(&p);
|
||||||
|
Loading…
Reference in New Issue
Block a user