am 2c3d095a: am 7627f105: Merge "init: 64-bit build issue"

* commit '2c3d095ac1297a003c0fb3dfd33acee7aa732aef':
  init: 64-bit build issue
This commit is contained in:
Mark Salyzyn 2014-05-01 20:42:07 +00:00 committed by Android Git Automerger
commit fdfec2a161
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}