summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2012-08-23 17:03:51 +0200
committerandroid code review <noreply-gerritcodereview@google.com>2012-08-23 17:03:52 +0200
commit481e03e39810ba1b7eab1d0d806039f45c4ad987 (patch)
tree3854cc31d0590fcab88971a5222878d921365dff
parentMerge changes I664f8dc7,I4154db06,I5e1df90f (diff)
parentFixed unused param warnings for check-lost+found (diff)
downloadandroid_bootable_recovery-481e03e39810ba1b7eab1d0d806039f45c4ad987.tar
android_bootable_recovery-481e03e39810ba1b7eab1d0d806039f45c4ad987.tar.gz
android_bootable_recovery-481e03e39810ba1b7eab1d0d806039f45c4ad987.tar.bz2
android_bootable_recovery-481e03e39810ba1b7eab1d0d806039f45c4ad987.tar.lz
android_bootable_recovery-481e03e39810ba1b7eab1d0d806039f45c4ad987.tar.xz
android_bootable_recovery-481e03e39810ba1b7eab1d0d806039f45c4ad987.tar.zst
android_bootable_recovery-481e03e39810ba1b7eab1d0d806039f45c4ad987.zip
-rw-r--r--tools/ota/check-lost+found.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ota/check-lost+found.c b/tools/ota/check-lost+found.c
index f85627544..da02f4602 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");