diff options
author | Elliott Hughes <enh@google.com> | 2014-04-23 16:54:33 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-04-23 16:54:33 -0700 |
commit | 6bd762289b911e8876759ebbfd9e8960ba825844 (patch) | |
tree | 6837055e52424d78e7c3e024e16ebc841895a59e /cmds | |
parent | 683cf1bffe33f49f26d46201f96cd2eff60e8192 (diff) | |
download | frameworks_base-6bd762289b911e8876759ebbfd9e8960ba825844.zip frameworks_base-6bd762289b911e8876759ebbfd9e8960ba825844.tar.gz frameworks_base-6bd762289b911e8876759ebbfd9e8960ba825844.tar.bz2 |
Fix a typo in an assertion.
Change-Id: I3e97bb3cb8070c0ec0c6b97769f1da3e7b4ef8f5
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/app_process/app_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/app_process/app_main.cpp b/cmds/app_process/app_main.cpp index 859d83b..3481437 100644 --- a/cmds/app_process/app_main.cpp +++ b/cmds/app_process/app_main.cpp @@ -219,7 +219,7 @@ int main(int argc, char* const argv[]) char prop[PROP_VALUE_MAX]; if (property_get(ABI_LIST_PROPERTY, prop, NULL) == 0) { - LOG_ALWAYS_FATAL("app_process: Unable to deterimine ABI list from property %s.", + LOG_ALWAYS_FATAL("app_process: Unable to determine ABI list from property %s.", ABI_LIST_PROPERTY); return 11; } |