am 481e03e3
: Merge "Fixed unused param warnings for check-lost+found"
* commit '481e03e39810ba1b7eab1d0d806039f45c4ad987': Fixed unused param warnings for check-lost+found
This commit is contained in:
commit
7b827d04a5
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue