Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 481e03e3 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by android code review
Browse files

Merge "Fixed unused param warnings for check-lost+found"

parents 3733d218 4f66d550
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");