mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
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:
parent
4e0b191bc0
commit
da4bfdae97
1 changed files with 1 additions and 1 deletions
|
@ -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 don’t 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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue