summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2023-10-15 22:00:43 +0200
committerSanto Cariotti <santo@dcariotti.me>2023-10-15 22:00:43 +0200
commitf9207a326c7f0e5861ee9489313861fdcd7bbff0 (patch)
treea647f8da6f596a608efffff8170da8d8db3a3b22 /src/main.rs
parentd3095900b941d7b08d579f9dc5e9dac45690228b (diff)
Add lines style
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs
index 9e025b7..19a9533 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -37,13 +37,14 @@ fn main() -> anyhow::Result<()> {
Ok(Fork::Parent(child)) => Pid::from_raw(child),
Err(err) => panic!("fork() failed: {err}"),
};
- let output = trace(pid, args.file_to_print)?;
- let lines = str::from_utf8(&output)?.trim();
+ let registers = trace(pid, args.file_to_print)?;
if !args.no_tui {
- run_tui(pid, lines)?;
+ run_tui(pid, &registers)?;
} else {
- writeln!(io::stdout(), "{lines}")?;
+ for line in registers {
+ writeln!(io::stdout(), "{}", line.output())?;
+ }
}
Ok(())