diff options
author | Narayan Kamath <narayan@google.com> | 2014-11-24 13:16:36 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-11-24 13:16:37 +0000 |
commit | 8e5fdac4de722d4f1333471a5a60412a0db2d1df (patch) | |
tree | 4c6260a3204bf9ddbaac6170061c22dfdda0e728 /cmds/installd/installd.c | |
parent | e0f91c3731b16b010eb31117e941e5468bdfeb2e (diff) | |
parent | 7fb390d10c896c861ba6205f2232669586ac5085 (diff) | |
download | frameworks_native-8e5fdac4de722d4f1333471a5a60412a0db2d1df.zip frameworks_native-8e5fdac4de722d4f1333471a5a60412a0db2d1df.tar.gz frameworks_native-8e5fdac4de722d4f1333471a5a60412a0db2d1df.tar.bz2 |
Merge "Mark 2 unused paramters as such"
Diffstat (limited to 'cmds/installd/installd.c')
-rw-r--r-- | cmds/installd/installd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/installd/installd.c b/cmds/installd/installd.c index 7caa146..4dd83ae 100644 --- a/cmds/installd/installd.c +++ b/cmds/installd/installd.c @@ -42,12 +42,12 @@ static int do_dexopt(char **arg, char reply[REPLY_MAX] __unused) return dexopt(arg[0], atoi(arg[1]), atoi(arg[2]), arg[3], arg[4], atoi(arg[5]), 0); } -static int do_mark_boot_complete(char **arg, char reply[REPLY_MAX]) +static int do_mark_boot_complete(char **arg, char reply[REPLY_MAX] __unused) { return mark_boot_complete(arg[0] /* instruction set */); } -static int do_move_dex(char **arg, char reply[REPLY_MAX]) +static int do_move_dex(char **arg, char reply[REPLY_MAX] __unused) { return move_dex(arg[0], arg[1], arg[2]); /* src, dst, instruction_set */ } |