diff options
author | 2017-08-07 10:32:18 -0700 | |
---|---|---|
committer | 2017-08-07 10:53:55 -0700 | |
commit | 13c0c748884d796e7d8e9c104033013e925966da (patch) | |
tree | 386f44d966e9c54a92cdf86b99eff79435682691 | |
parent | b76b3056f57be4abf9fae1375861a5e7c897b074 (diff) |
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
Change-Id: Icb9cb2d5ad061e3ea1c43dc1cd7ca2f222965cdc
-rw-r--r-- | tools/aapt2/ConfigDescription.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt2/ConfigDescription.cpp b/tools/aapt2/ConfigDescription.cpp index 7ff0c7227c9c..6a099651f2ce 100644 --- a/tools/aapt2/ConfigDescription.cpp +++ b/tools/aapt2/ConfigDescription.cpp @@ -70,7 +70,7 @@ static bool parseMcc(const char* name, ResTable_config* out) { 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; |