Installd: Fix Clang build

Remove some unused parameters and variables.

Change-Id: I507ae48fe1744b800ceb29192d463fd26c2ccda7
This commit is contained in:
Andreas Gampe 2015-04-09 09:52:45 -07:00
parent d107c305f7
commit 0ad7a11003
1 changed files with 2 additions and 5 deletions

View File

@ -35,8 +35,6 @@ dir_rec_array_t android_system_dirs;
int install(const char *uuid, const char *pkgname, uid_t uid, gid_t gid, const char *seinfo)
{
struct stat libStat;
if ((uid < AID_SYSTEM) || (gid < AID_SYSTEM)) {
ALOGE("invalid uid/gid: %d %d\n", uid, gid);
return -1;
@ -141,8 +139,6 @@ int delete_user_data(const char *uuid, const char *pkgname, userid_t userid)
int make_user_data(const char *uuid, const char *pkgname, uid_t uid, userid_t userid, const char* seinfo)
{
struct stat libStat;
std::string _pkgdir(create_package_data_path(uuid, pkgname, userid));
const char* pkgdir = _pkgdir.c_str();
@ -1539,7 +1535,8 @@ fail:
}
// TODO: extend to know about other volumes
int restorecon_data(const char *uuid, const char* pkgName, const char* seinfo, uid_t uid)
int restorecon_data(const char* uuid __attribute__((unused)), const char* pkgName,
const char* seinfo, uid_t uid)
{
struct dirent *entry;
DIR *d;