summaryrefslogtreecommitdiffstats
path: root/include/androidfw
diff options
context:
space:
mode:
authorMÃ¥rten Kongstad <marten.kongstad@sonymobile.com>2013-11-26 14:48:22 +0100
committerZoran Jovanovic <zoran.jovanovic@sonymobile.com>2013-12-16 12:42:36 +0100
commit4482e7cb67c516453a67d73e98a085a5f3576953 (patch)
treec3e17c68af640b8ed4c4f1881e7798ef4095f154 /include/androidfw
parenta0ab49bb52f44eac97f81117d6864edd6a2e0487 (diff)
downloadframeworks_base-4482e7cb67c516453a67d73e98a085a5f3576953.zip
frameworks_base-4482e7cb67c516453a67d73e98a085a5f3576953.tar.gz
frameworks_base-4482e7cb67c516453a67d73e98a085a5f3576953.tar.bz2
Fix ResTable_config::CONFIG_* typo (MCC vs MNC)
In commit 08d5b8f, the ResTable_config::CONFIG_* enum was incorrectly changed to assign the same value to both CONFIG_MCC and CONFIG_MNC: - CONFIG_MCC = 0x0001, - CONFIG_MNC = 0x0002, + CONFIG_MCC = ACONFIGURATION_MCC, + CONFIG_MNC = ACONFIGURATION_MCC, This commit assigns CONFIG_MNC the value ACONFIGURATION_MNC, as intended. Change-Id: I3b8799914a55debdb3ff30a82ada7ad990c49970
Diffstat (limited to 'include/androidfw')
-rw-r--r--include/androidfw/ResourceTypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/androidfw/ResourceTypes.h b/include/androidfw/ResourceTypes.h
index 97afa59..5151b06 100644
--- a/include/androidfw/ResourceTypes.h
+++ b/include/androidfw/ResourceTypes.h
@@ -1020,7 +1020,7 @@ struct ResTable_config
// attrs_manifest.xml.
enum {
CONFIG_MCC = ACONFIGURATION_MCC,
- CONFIG_MNC = ACONFIGURATION_MCC,
+ CONFIG_MNC = ACONFIGURATION_MNC,
CONFIG_LOCALE = ACONFIGURATION_LOCALE,
CONFIG_TOUCHSCREEN = ACONFIGURATION_TOUCHSCREEN,
CONFIG_KEYBOARD = ACONFIGURATION_KEYBOARD,