Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 
remove extra newline from standard print handler. (#444)

* remove extra newline from standard print handler.

* Update main.eldritch

Remove debug.

* Update lib.rs

Undo attempt at fstrings.

* Update lib.rs

Fix format
  • Loading branch information
hulto authored Jan 21, 2024
1 parent 3810c1f commit 033607d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implants/lib/eldritch/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ pub struct StdPrintHandler {}

impl PrintHandler for StdPrintHandler {
fn println(&self, text: &str) -> anyhow::Result<()> {
println!("{}", text.to_owned());
print!("{}", text.to_owned());
Ok(())
}
}
Expand Down

0 comments on commit 033607d

Please sign in to comment.