1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

address breakpoints needs a leading "*"

This commit is contained in:
Alain Magloire 2003-01-10 19:19:11 +00:00
parent 0f5ee6f850
commit 03e23c8df3

View file

@ -491,7 +491,7 @@ public class CTarget implements ICDITarget {
} else if (location.getFunction() != null) {
loc = location.getFunction();
} else if (location.getAddress() != 0) {
loc = "" + location.getAddress();
loc = "*" + location.getAddress();
}
MIExecUntil until = factory.createMIExecUntil(loc);
try {