[clippy] remove unnecessary semicolon

This commit is contained in:
2025-04-08 18:35:29 +02:00
parent b5c18ace38
commit 4f81e1dcf4

View File

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