Use -Werror in build/make
* Remove unused local variables. Bug: 66996870 Test: build with WITH_TIDY=1 Change-Id: Iced5bb903902f49d7cd5cf5f572906a512c75e18
This commit is contained in:
parent
40ef25d7bd
commit
2a5bc9dfbf
9 changed files with 7 additions and 8 deletions
|
@ -5,6 +5,7 @@
|
|||
cc_binary_host {
|
||||
|
||||
srcs: ["acp.c"],
|
||||
cflags: ["-Wall", "-Werror"],
|
||||
|
||||
static_libs: ["libhost"],
|
||||
name: "acp",
|
||||
|
|
|
@ -41,10 +41,9 @@
|
|||
int process(int argc, char* const argv[], unsigned int options)
|
||||
{
|
||||
int retVal = 0;
|
||||
int i, cc;
|
||||
int i;
|
||||
char* stripDest = NULL;
|
||||
int stripDestLen;
|
||||
struct stat destStat;
|
||||
bool destMustBeDir = false;
|
||||
struct stat sb;
|
||||
|
||||
|
|
|
@ -9,5 +9,6 @@ cc_binary_host {
|
|||
"files.cpp",
|
||||
"fs.cpp",
|
||||
],
|
||||
cflags: ["-Wall", "-Werror"],
|
||||
static_libs: ["libhost"],
|
||||
}
|
||||
|
|
|
@ -425,8 +425,6 @@ list_dir(const string& path, const FileRecord& rec,
|
|||
const vector<string>& excludes,
|
||||
vector<FileRecord>* more)
|
||||
{
|
||||
int err;
|
||||
|
||||
string full = path_append(rec.sourceBase, rec.sourceName);
|
||||
full = path_append(full, path);
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
cc_binary_host {
|
||||
name: "fs_get_stats",
|
||||
srcs: ["fs_get_stats.c"],
|
||||
cflags: ["-Wall", "-Werror"],
|
||||
shared_libs: [
|
||||
"libcutils",
|
||||
"liblog",
|
||||
|
|
|
@ -13,6 +13,8 @@ cc_binary_host {
|
|||
"ZipFile.cpp",
|
||||
],
|
||||
|
||||
cflags: ["-Wall", "-Werror"],
|
||||
|
||||
static_libs: [
|
||||
"libandroidfw",
|
||||
"libutils",
|
||||
|
|
|
@ -785,8 +785,6 @@ status_t ZipFile::copyFpToFp(FILE* dstFp, FILE* srcFp, uint32_t* pCRC32)
|
|||
status_t ZipFile::copyDataToFp(FILE* dstFp,
|
||||
const void* data, size_t size, uint32_t* pCRC32)
|
||||
{
|
||||
size_t count;
|
||||
|
||||
*pCRC32 = crc32(0L, Z_NULL, 0);
|
||||
if (size > 0) {
|
||||
*pCRC32 = crc32(*pCRC32, (const unsigned char*)data, size);
|
||||
|
|
|
@ -27,6 +27,7 @@ cc_binary_host {
|
|||
],
|
||||
|
||||
name: "ziptime",
|
||||
cflags: ["-Wall", "-Werror"],
|
||||
target: {
|
||||
windows: {
|
||||
enabled: true,
|
||||
|
|
|
@ -86,7 +86,6 @@ status_t ZipEntry::initAndRewriteFromCDE(FILE* fp)
|
|||
*/
|
||||
status_t ZipEntry::LocalFileHeader::rewrite(FILE* fp)
|
||||
{
|
||||
status_t result = 0;
|
||||
uint8_t buf[kLFHLen];
|
||||
|
||||
if (fread(buf, 1, kLFHLen, fp) != kLFHLen)
|
||||
|
@ -124,7 +123,6 @@ status_t ZipEntry::LocalFileHeader::rewrite(FILE* fp)
|
|||
*/
|
||||
status_t ZipEntry::CentralDirEntry::rewrite(FILE* fp)
|
||||
{
|
||||
status_t result = 0;
|
||||
uint8_t buf[kCDELen];
|
||||
uint16_t fileNameLength, extraFieldLength, fileCommentLength;
|
||||
|
||||
|
|
Loading…
Reference in a new issue