mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-01 06:20:17 +01:00
Change to size_t in swaylock's get_config_path
This commit is contained in:
parent
296889f3d7
commit
d375f6af18
1 changed files with 1 additions and 1 deletions
|
@ -716,7 +716,7 @@ static char *get_config_path(void) {
|
|||
|
||||
wordexp_t p;
|
||||
char *path;
|
||||
for (int i = 0; i < (int)(sizeof(config_paths) / sizeof(char *)); ++i) {
|
||||
for (size_t i = 0; i < (int)(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 a new issue