From 62f7c9e90c4a82f941ce7033be04e77bd6291a3f Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Wed, 25 Sep 2002 20:33:40 +0000 Subject: [PATCH] Fixed typo. --- .../src/org/eclipse/cdt/debug/core/CDebugModel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/CDebugModel.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/CDebugModel.java index ff613b1cef7..c317f1f912f 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/CDebugModel.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/CDebugModel.java @@ -290,7 +290,7 @@ public class CDebugModel private static void stopInMain( CDebugTarget target ) throws DebugException { - ICDILocation location = target.getCDISession().getBreakpointManager().createLocation( "", "xxxxmain", 0 ); + ICDILocation location = target.getCDISession().getBreakpointManager().createLocation( "", "main", 0 ); try { target.setInternalTemporaryBreakpoint( location );