diff options
author | Brian Carlstrom <bdc@google.com> | 2014-06-17 19:51:37 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-06-17 05:00:50 +0000 |
commit | 71f9956a23885e64626828a1afa8c512e29be8cc (patch) | |
tree | ceaa2c560d55f12bf96c93274977e3afb1cddfc3 /cmds | |
parent | 8c9bcff892ae30897a971c3b97305e70db5b5bd3 (diff) | |
parent | 7195fcc2185c35b45a8f28c79fde4999b38850e8 (diff) | |
download | frameworks_native-71f9956a23885e64626828a1afa8c512e29be8cc.zip frameworks_native-71f9956a23885e64626828a1afa8c512e29be8cc.tar.gz frameworks_native-71f9956a23885e64626828a1afa8c512e29be8cc.tar.bz2 |
Merge "Fix obsolete argument name"
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/installd/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/commands.c b/cmds/installd/commands.c index 566ce55..974c865 100644 --- a/cmds/installd/commands.c +++ b/cmds/installd/commands.c @@ -645,7 +645,7 @@ static void run_dex2oat(int zip_fd, int oat_fd, const char* input_file_name, char zip_fd_arg[strlen("--zip-fd=") + MAX_INT_LEN]; char zip_location_arg[strlen("--zip-location=") + PKG_PATH_MAX]; char oat_fd_arg[strlen("--oat-fd=") + MAX_INT_LEN]; - char oat_location_arg[strlen("--oat-name=") + PKG_PATH_MAX]; + char oat_location_arg[strlen("--oat-location=") + PKG_PATH_MAX]; char instruction_set_arg[strlen("--instruction-set=") + MAX_INSTRUCTION_SET_LEN]; char profile_file_arg[strlen("--profile-file=") + PKG_PATH_MAX]; char top_k_profile_threshold_arg[strlen("--top-k-profile-threshold=") + PROPERTY_VALUE_MAX]; |