diff options
author | Dmitry Sharshakov | 2021-08-14 10:31:05 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-20 04:43:54 +0000 |
commit | 2a6210806b789fd1123c0767980e8f3af96c6f22 (patch) | |
tree | 32448a5b33b6ea39c03d541df9d69fa5899e76b0 /helix-dap/examples | |
parent | f5b1655eab402789a189f7abf06c4f9de7590df4 (diff) |
dap-lldb: adjust breakpoint position
Diffstat (limited to 'helix-dap/examples')
-rw-r--r-- | helix-dap/examples/dap-lldb.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-dap/examples/dap-lldb.rs b/helix-dap/examples/dap-lldb.rs index 2c8a16c0..ee503a23 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, |