diff options
| author | 2016-10-20 19:26:59 +0000 | |
|---|---|---|
| committer | 2016-10-20 19:26:59 +0000 | |
| commit | 281e9f30c05d033b49141922e438eb47afaa0e8f (patch) | |
| tree | d71788d218138c00c90c8c24d75ca38460e43695 | |
| parent | b56b616c1a75c392e3e07aee07e9cfdb919d5653 (diff) | |
| parent | ea4423b181ab793b7ec9eebe5bc388abbc7be35a (diff) | |
Merge "Fix a static-analyzer warning." am: 63b4f6f5db
am: ea4423b181
Change-Id: I47de526a03bed05c4f69a89ec3ed2403a7e3b536
| -rw-r--r-- | tools/aapt2/util/Files.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt2/util/Files.cpp b/tools/aapt2/util/Files.cpp index f5e49f11c082..042ff0e6c1b9 100644 --- a/tools/aapt2/util/Files.cpp +++ b/tools/aapt2/util/Files.cpp @@ -72,8 +72,8 @@ std::vector<std::string> listFiles(const StringPiece& root, std::string* outErro std::stringstream errorStr; errorStr << "unable to open file: " << strerror(errno); *outError = errorStr.str(); - return {}; } + return {}; } std::vector<std::string> files; |