diff options
| author | 2021-09-01 01:44:06 +0800 | |
|---|---|---|
| committer | 2021-09-01 01:44:06 +0800 | |
| commit | e09648109071a56d596a9ab42e87bff56d83df04 (patch) | |
| tree | bf93be267826596158b7cae2e2c1515336a50763 | |
| parent | 93b4b55ee719427d877828871dd0837b34145d9c (diff) | |
Fix unused-but-set-variable warning
Test: presubmit
Bug: 197240255
Change-Id: I5cca354746213e9ef43e848dbc38ecbe168d0b6a
| -rw-r--r-- | tools/aapt2/cmd/Diff.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt2/cmd/Diff.cpp b/tools/aapt2/cmd/Diff.cpp index d56994e3ae24..97e4436bca93 100644 --- a/tools/aapt2/cmd/Diff.cpp +++ b/tools/aapt2/cmd/Diff.cpp @@ -148,7 +148,7 @@ static bool EmitResourceEntryDiff(IAaptContext* context, LoadedApk* apk_a, diff = true; } } - return false; + return diff; } static bool EmitResourceTypeDiff(IAaptContext* context, LoadedApk* apk_a, |