Merge "Fix x86_64 build"

This commit is contained in:
Dmitriy Ivanov 2015-02-04 01:15:36 +00:00 committed by Gerrit Code Review
commit 5204b1580e
1 changed files with 2 additions and 2 deletions

View File

@ -464,9 +464,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=%u gid=%u nlink=%d mode=%o)\n",
ERROR("skipping insecure property file %s (uid=%u gid=%u nlink=%u mode=%o)\n",
entry->d_name, (unsigned int)sb.st_uid, (unsigned int)sb.st_gid,
sb.st_nlink, sb.st_mode);
(unsigned int)sb.st_nlink, sb.st_mode);
close(fd);
continue;
}