From 2a6210806b789fd1123c0767980e8f3af96c6f22 Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Sat, 14 Aug 2021 13:31:05 +0300 Subject: [PATCH] dap-lldb: adjust breakpoint position --- helix-dap/examples/dap-lldb.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-dap/examples/dap-lldb.rs b/helix-dap/examples/dap-lldb.rs index 2c8a16c09..ee503a23c 100644 --- a/helix-dap/examples/dap-lldb.rs +++ b/helix-dap/examples/dap-lldb.rs @@ -56,8 +56,8 @@ pub async fn main() -> Result<()> { .set_breakpoints( "/tmp/cdebug/main.c".to_owned(), vec![SourceBreakpoint { - line: 8, - column: Some(2), + line: 6, + column: Some(4), condition: None, hit_condition: None, log_message: None,