commit | cb1e6f95ae02a8670a85d50db8dc95a8bbb3622d | [log] [tgz] |
---|---|---|
author | Adam Lesinski <adamlesinski@google.com> | Mon Aug 07 10:32:18 2017 -0700 |
committer | Adam Lesinski <adamlesinski@google.com> | Thu Sep 14 11:30:18 2017 -0700 |
tree | 73bb8dde0b8e5a6316c600323afe27dd6f0ceae6 | |
parent | e116ebe0bcd2f078fedb526ba1e8570a6885f469 [diff] [blame] |
AAPT2: Fix typo in Config parsing The 'any' syntax of a configuration is rarely used so this has not been an issue in the field. Test: none Bug: 65645766 Change-Id: Icb9cb2d5ad061e3ea1c43dc1cd7ca2f222965cdc Merged-In: Icb9cb2d5ad061e3ea1c43dc1cd7ca2f222965cdc
diff --git a/tools/aapt2/ConfigDescription.cpp b/tools/aapt2/ConfigDescription.cpp index 7ff0c72..6a099651 100644 --- a/tools/aapt2/ConfigDescription.cpp +++ b/tools/aapt2/ConfigDescription.cpp
@@ -70,7 +70,7 @@ static bool parseMnc(const char* name, ResTable_config* out) { if (strcmp(name, kWildcardName) == 0) { - if (out) out->mcc = 0; + if (out) out->mnc = 0; return true; } const char* c = name;