Fix unmappable characters for encoding US-ASCII

> Task :Debugger-agent-lldb:compileJava
/tmp/ghidra/Ghidra/Debug/Debugger-agent-lldb/src/main/java/agent/lldb/model/impl/LldbModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0xE2) for encoding US-ASCII
                                "set this flag so lldb & the handee don???t race to set its exit status");
                                                                       ^
/tmp/ghidra/Ghidra/Debug/Debugger-agent-lldb/src/main/java/agent/lldb/model/impl/LldbModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0x80) for encoding US-ASCII
                                "set this flag so lldb & the handee don???t race to set its exit status");
                                                                        ^
/tmp/ghidra/Ghidra/Debug/Debugger-agent-lldb/src/main/java/agent/lldb/model/impl/LldbModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0x99) for encoding US-ASCII
                                "set this flag so lldb & the handee don???t race to set its exit status");
                                                                         ^

> Task :Debugger-agent-frida:compileJava
/tmp/ghidra/Ghidra/Debug/Debugger-agent-frida/src/main/java/agent/frida/model/impl/FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0xE2) for encoding US-ASCII
                                "set this flag so frida & the handee don???t race to set its exit status");
                                                                        ^
/tmp/ghidra/Ghidra/Debug/Debugger-agent-frida/src/main/java/agent/frida/model/impl/FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0x80) for encoding US-ASCII
                                "set this flag so frida & the handee don???t race to set its exit status");
                                                                         ^
/tmp/ghidra/Ghidra/Debug/Debugger-agent-frida/src/main/java/agent/frida/model/impl/FridaModelTargetProcessLaunchWithOptionsConnectorImpl.java:125: error: unmappable character (0x99) for encoding US-ASCII
                                "set this flag so frida & the handee don???t race to set its exit status");
                                                                          ^
This commit is contained in:
Johannes Obermayr 2023-01-27 16:44:47 +01:00
parent 4e0b191bc0
commit da4bfdae97

View file

@ -122,7 +122,7 @@ public class FridaModelTargetProcessLaunchWithOptionsConnectorImpl extends Frida
ParameterDescription<Boolean> pF8 =
ParameterDescription.create(Boolean.class, "ExitRace", false,
false, "Suppress race on exit",
"set this flag so frida & the handee dont race to set its exit status");
"set this flag so frida & the handee don't race to set its exit status");
map.put("ExitRace", pF8);
ParameterDescription<Boolean> pF9 = ParameterDescription.create(Boolean.class, "Detach",
false,