GP-889: fix for C&P error

This commit is contained in:
d-millar 2021-04-28 15:00:21 -04:00
parent 3c71860d4a
commit a61baf58c4

View File

@ -49,7 +49,7 @@ public class GdbM68kDebuggerMappingOpinion implements DebuggerMappingOpinion {
return Set.of(); return Set.of();
} }
String arch = env.getArchitecture(); String arch = env.getArchitecture();
if (arch.startsWith("mips:32")) { if (arch.startsWith("m68k")) {
return Set.of(new GdbM68kBELinux32DefOffer(process)); return Set.of(new GdbM68kBELinux32DefOffer(process));
} }
return Set.of(); return Set.of();