Applied clippy

This commit is contained in:
Thorsten Sommer 2026-02-25 17:40:07 +01:00
parent 4eea56677c
commit 5cf1191e26
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -44,7 +44,7 @@ fn sanitize_stdout_line(line: &str) -> String {
// CSI sequence: ESC [ ... <final>
if next == '[' {
chars.next();
while let Some(csi_char) = chars.next() {
for csi_char in chars.by_ref() {
let code = csi_char as u32;
if (0x40..=0x7E).contains(&code) {
break;