summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2017-11-30 14:59:08 -0800
committerDan Willemsen <dwillemsen@google.com>2017-11-30 23:35:42 +0000
commit22088fd2d183115db7408e3477ae6a597cb2f057 (patch)
treed21aa4ba6f459859d89765cf3bd0f13d66c1c0f7
parentf106bb6bb822740ea35b5974c2f137ef0a662648 (diff)
downloadsystem_core-22088fd2d183115db7408e3477ae6a597cb2f057.tar.gz
system_core-22088fd2d183115db7408e3477ae6a597cb2f057.tar.bz2
system_core-22088fd2d183115db7408e3477ae6a597cb2f057.zip
Mark more win32 parameters as unused
Missed one new instance with my last patch. Bug: 69933068 Test: m native-host-cross Change-Id: Ib6d0b994131a0011b3a2f1a4633b21756a9d6732
-rw-r--r--fastboot/fs.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/fastboot/fs.cpp b/fastboot/fs.cpp
index 320cf7f83..4bf7af832 100644
--- a/fastboot/fs.cpp
+++ b/fastboot/fs.cpp
@@ -185,6 +185,7 @@ static int generate_f2fs_image(const char* fileName, long long partSize, const s
}
return 0;
#else
+ UNUSED(fileName, partSize, initial_dir);
fprintf(stderr, "make_f2fs not supported on Windows\n");
return -1;
#endif