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;