diff options
author | Wonil Kim <wonil.kim@gmail.com> | 2014-04-28 11:26:55 +0900 |
---|---|---|
committer | Wonil Kim <wonil.kim@gmail.com> | 2014-04-28 11:26:55 +0900 |
commit | 9cb554a7784307d97c20991d90c76d9cf8a12e01 (patch) | |
tree | 655402199725897568ffc5d27e8e7d80ff10312c /dex2oat | |
parent | da6e4feb6a02fed7f307e1ef3b90e716a99ba24c (diff) | |
download | art-9cb554a7784307d97c20991d90c76d9cf8a12e01.zip art-9cb554a7784307d97c20991d90c76d9cf8a12e01.tar.gz art-9cb554a7784307d97c20991d90c76d9cf8a12e01.tar.bz2 |
Fix typo of --oat-fd description in help
--oat-fd description in help was copied from --oat-file description.
Change-Id: Idbf36018af58db169f6d65382a7602ec950cce99
Signed-off-by: Wonil Kim <wonil.kim@gmail.com>
Diffstat (limited to 'dex2oat')
-rw-r--r-- | dex2oat/dex2oat.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index ac76c35..c70db14 100644 --- a/dex2oat/dex2oat.cc +++ b/dex2oat/dex2oat.cc @@ -110,7 +110,7 @@ static void Usage(const char* fmt, ...) { UsageError(" Example: --oat-file=/system/framework/boot.oat"); UsageError(""); UsageError(" --oat-fd=<number>: specifies the oat output destination via a file descriptor."); - UsageError(" Example: --oat-file=/system/framework/boot.oat"); + UsageError(" Example: --oat-fd=6"); UsageError(""); UsageError(" --oat-location=<oat-name>: specifies a symbolic name for the file corresponding"); UsageError(" to the file descriptor specified by --oat-fd."); |