summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-06-16 13:28:03 -0700
committerBrian Carlstrom <bdc@google.com>2014-06-16 13:28:03 -0700
commit7195fcc2185c35b45a8f28c79fde4999b38850e8 (patch)
treebdc666231e0ec67277ab709abde806357cd3131b
parentece6238488207bd20cc4d32fda90514ebf461206 (diff)
downloadnative-7195fcc2185c35b45a8f28c79fde4999b38850e8.tar.gz
Fix obsolete argument name
Change-Id: I8030f055ee49dc86d4592f36791edddfc0d60a31
-rw-r--r--cmds/installd/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/commands.c b/cmds/installd/commands.c
index 3930224b79..2645ce2859 100644
--- a/cmds/installd/commands.c
+++ b/cmds/installd/commands.c
@@ -641,7 +641,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];