[clippy] remove unnecessary semicolon

This commit is contained in:
ddidderr 2025-04-08 18:35:29 +02:00
parent b5c18ace38
commit 4f81e1dcf4
Signed by: ddidderr
GPG Key ID: 3841F1C27E6F0E14

View File

@ -94,7 +94,7 @@ fn run() -> LogtimesResult {
f.write_all(&linebuf[..end])?;
f.write_all(b"\n")?;
f.flush()?;
};
}
// clear line buffer, so it is fresh for the next line
linebuf.clear();