Skip to content

Commit

Permalink
Fix the output formatting of :db (#577)
Browse files Browse the repository at this point in the history
* fix the output formatting of :db
  • Loading branch information
hexploitable authored Feb 19, 2024
1 parent d3574ce commit e4963a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent/lib/debug/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export function sendSignal(args: string[]) {
function _breakpointList(args: string[]) {
for (const [address, bp] of newBreakpoints.entries()) {
if (bp.patches[0].address.equals(ptr(address))) {
console.log(address);
console.log(`${address}\n`);
}
}
}
Expand Down

0 comments on commit e4963a5

Please sign in to comment.