From d1f253b609c6f7e8d85ea3eb1ecae790efe9a36f Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Sun, 13 Mar 2016 10:40:31 +0100 Subject: [PATCH] fix --- .../decompiler/flash/console/CommandLineArgumentParser.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java index 91df326b0..810a42476 100644 --- a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java +++ b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java @@ -1861,7 +1861,7 @@ public class CommandLineArgumentParser { private static void parseMemorySearch(Stack args) { if (args.size() < 1) { - badArguments("memorySearch"); + badArguments("memorysearch"); } AtomicInteger cnt = new AtomicInteger(); @@ -1875,7 +1875,7 @@ public class CommandLineArgumentParser { processId = Integer.parseInt(arg); } catch (NumberFormatException nfe) { System.err.println("ProcessId should be integer"); - badArguments("memorySearch"); + badArguments("memorysearch"); } boolean found = false;