1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:57:35 +00:00

Kernel/Plan9FS: Propagate errors in Plan9FSMessage::append_data

This commit is contained in:
Freakness109 2022-12-16 22:21:18 +01:00 committed by Sam Atkins
parent 0dd8066a79
commit 1f1e58ed75
3 changed files with 5 additions and 5 deletions

View file

@ -135,7 +135,7 @@ public:
Plan9FSMessage& operator<<(u32);
Plan9FSMessage& operator<<(u64);
Plan9FSMessage& operator<<(StringView);
void append_data(StringView);
ErrorOr<void> append_data(StringView);
template<typename T>
Plan9FSMessage& operator>>(T& t)