Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7627f105 authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Gerrit Code Review
Browse files

Merge "init: 64-bit build issue"

parents ebd35b67 ebf49f3e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -557,7 +557,8 @@ static void load_persistent_properties()
                    || (sb.st_gid != 0)
                    || (sb.st_nlink != 1)) {
                ERROR("skipping insecure property file %s (uid=%u gid=%u nlink=%d mode=%o)\n",
                      entry->d_name, sb.st_uid, sb.st_gid, sb.st_nlink, sb.st_mode);
                      entry->d_name, (unsigned int)sb.st_uid, (unsigned int)sb.st_gid,
                      sb.st_nlink, sb.st_mode);
                close(fd);
                continue;
            }