summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-07-13 14:46:49 -0400
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-07-16 12:17:40 -0400
commitd375f6af18f0d56b67644fb46e144995e7cbcd7e (patch)
tree4e15d17a35412e3e4d2908f3435604b95aac0d4b
parentImplement swaylock configuration file parsing (diff)
downloadsway-d375f6af18f0d56b67644fb46e144995e7cbcd7e.tar.gz
sway-d375f6af18f0d56b67644fb46e144995e7cbcd7e.tar.zst
sway-d375f6af18f0d56b67644fb46e144995e7cbcd7e.zip
Change to size_t in swaylock's get_config_path
-rw-r--r--swaylock/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaylock/main.c b/swaylock/main.c
index 3d57eb75..ebd87d32 100644
--- a/swaylock/main.c
+++ b/swaylock/main.c
@@ -716,7 +716,7 @@ static char *get_config_path(void) {
716 716
717 wordexp_t p; 717 wordexp_t p;
718 char *path; 718 char *path;
719 for (int i = 0; i < (int)(sizeof(config_paths) / sizeof(char *)); ++i) { 719 for (size_t i = 0; i < (int)(sizeof(config_paths) / sizeof(char *)); ++i) {
720 if (wordexp(config_paths[i], &p, 0) == 0) { 720 if (wordexp(config_paths[i], &p, 0) == 0) {
721 path = strdup(p.we_wordv[0]); 721 path = strdup(p.we_wordv[0]);
722 wordfree(&p); 722 wordfree(&p);