am 7169b230: Merge "fs_mgr: correct warning on unused function parameter"

* commit '7169b2303d9340b3537e5059f1790a246490b899':
  fs_mgr: correct warning on unused function parameter
This commit is contained in:
Nick Kralevich 2014-01-14 22:03:29 -08:00 committed by Android Git Automerger
commit e220e9e06d
1 changed files with 1 additions and 1 deletions

View File

@ -821,7 +821,7 @@ int fs_mgr_get_crypt_info(struct fstab *fstab, char *key_loc, char *real_blk_dev
/* Add an entry to the fstab, and return 0 on success or -1 on error */
int fs_mgr_add_entry(struct fstab *fstab,
const char *mount_point, const char *fs_type,
const char *blk_device, long long length)
const char *blk_device, long long length __attribute__(unused))
{
struct fstab_rec *new_fstab_recs;
int n = fstab->num_entries;