diff options
| author | ache <ache@ache.one> | 2026-08-04 18:45:45 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-08-04 18:47:01 +0200 |
| commit | 48adf3d021bb4bf4dcddcd51fdead5c07a74546f (patch) | |
| tree | 11c716669724d713a84721bc94cae614eeb1acc3 /src | |
| parent | Linting and format (diff) | |
Fix line ends
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.rs b/src/print.rs index 421efa3..39a4382 100644 --- a/src/print.rs +++ b/src/print.rs @@ -155,7 +155,7 @@ pub fn print_legende_line() { val, element.fg, element.bg, element.character ); } - println!(); + println!("{}", ERASE_LINE_END); } // TODO: Simplify this function @@ -180,7 +180,7 @@ pub fn print_ping_line(states: &Vec<State>) { } } - println!(); + println!("{}", ERASE_LINE_END); } fn get_symbol_and_colors_for_rrt(rrt: u64) -> (&'static str, &'static str, &'static str) { |