minor fix in write_raw

This commit is contained in:
Mikaël Cluseau
2025-08-05 09:37:26 +02:00
parent bbea9b9c00
commit 6f059287ec

View File

@ -269,7 +269,7 @@ fn write_raw(raw: &[u8]) {
use std::io::Write;
let mut out = std::io::stdout();
out.write(raw).expect("stdout write");
out.write_all(raw).expect("stdout write");
out.flush().expect("stdout flush");
}