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

Commit ebf49f3e authored by Mark Salyzyn's avatar Mark Salyzyn
Browse files

init: 64-bit build issue

(cherry pick from Icc5344abc184adf4247175d85b2da08af4636e49)

Change-Id: I88b0c9b20720ac62ebae8359ded4ab77b4ebcdde
parent c7580819
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;
            }