diff options
author | Edwin Vane <edwin.vane@intel.com> | 2012-07-27 12:00:48 -0400 |
---|---|---|
committer | Edwin Vane <edwin.vane@intel.com> | 2012-08-21 16:03:46 -0400 |
commit | 4f66d550e913a7b9f7a3c8cf8663bba46dd2ca02 (patch) | |
tree | 3854cc31d0590fcab88971a5222878d921365dff /tools | |
parent | 3733d2185bbcedd9ef626907f1f32628986cc0f5 (diff) | |
download | bootable_recovery-4f66d550e913a7b9f7a3c8cf8663bba46dd2ca02.zip bootable_recovery-4f66d550e913a7b9f7a3c8cf8663bba46dd2ca02.tar.gz bootable_recovery-4f66d550e913a7b9f7a3c8cf8663bba46dd2ca02.tar.bz2 |
Fixed unused param warnings for check-lost+found
A few simple warnings fixed to produce a clean clang build.
Change-Id: I9484f860903a80e4c91e204e7e6738145535f642
Author: Edwin Vane <edwin.vane@intel.com>
Reviewed-by: Ariel J Bernal <ariel.j.bernal@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ota/check-lost+found.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ota/check-lost+found.c b/tools/ota/check-lost+found.c index f856275..da02f46 100644 --- a/tools/ota/check-lost+found.c +++ b/tools/ota/check-lost+found.c @@ -44,7 +44,7 @@ static const char *kPartitions[] = { "/system", "/data", "/cache", NULL }; * 2. Write a log entry with the number of files in lost+found directories. */ -int main(int argc, char **argv) { +int main(int argc __attribute__((unused)), char **argv __attribute__((unused))) { mkdir(kOutputDir, 0755); chown(kOutputDir, AID_SYSTEM, AID_SYSTEM); FILE *out = fopen(kOutputFile, "a"); |