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

Commit 914eec76 authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Android Git Automerger
Browse files

am 8299ff70: Merge "init: 64-bit build issue" into klp-volantis-dev

* commit '8299ff70':
  init: 64-bit build issue
parents c8e20472 8299ff70
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -539,8 +539,9 @@ static void load_persistent_properties()
                    || (sb.st_uid != 0)
                    || (sb.st_gid != 0)
                    || (sb.st_nlink != 1)) {
                ERROR("skipping insecure property file %s (uid=%lu gid=%lu nlink=%d mode=%o)\n",
                      entry->d_name, sb.st_uid, sb.st_gid, sb.st_nlink, sb.st_mode);
                ERROR("skipping insecure property file %s (uid=%u gid=%u nlink=%d mode=%o)\n",
                      entry->d_name, (unsigned int)sb.st_uid, (unsigned int)sb.st_gid,
                      sb.st_nlink, sb.st_mode);
                close(fd);
                continue;
            }