Oh whoops handle that

This commit is contained in:
Nadja Reitzenstein 2022-06-23 17:31:57 +02:00
parent 3075e1c027
commit e7358838d5
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ impl AuditLog {
let mut ser = Serializer::new(&mut writer);
line.serialize(&mut ser)
.expect("failed to serialize audit log line");
writer.write("\n".as_bytes())?;
writer.write_all("\n".as_bytes())?;
Ok(())
}
}