- fixed an issue where -D didn't use the specified file

git-svn-id: https://smali.googlecode.com/svn/trunk@219 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2009-06-23 06:29:07 +00:00
parent c894b9658c
commit 3249b724ea

View File

@ -95,7 +95,7 @@ public class main {
if (commandLine.hasOption("D")) {
doDump = true;
disassemble = false;
dumpFileName = commandLine.getOptionValue("d", inputDexFileName + ".dump");
dumpFileName = commandLine.getOptionValue("D", inputDexFileName + ".dump");
}
if (commandLine.hasOption("w")) {