[nostalgia,keel] Update for Ox changes

This commit is contained in:
2023-06-09 21:15:22 -05:00
parent b67359ddb0
commit 952a2f153e
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ ox::Result<ox::UUID> readUuidHeader(const ox::Buffer &buff) noexcept;
ox::Result<ox::UUID> readUuidHeader(const char *buff, std::size_t buffLen) noexcept;
ox::Error writeUuidHeader(ox::Writer_c auto *writer, const ox::UUID &uuid) noexcept {
ox::Error writeUuidHeader(ox::Writer_c auto &writer, const ox::UUID &uuid) noexcept {
const auto hdr = ox::sfmt<ox::BString<K1HdrSz>>("K1;{};", uuid.toString());
return write(writer, hdr);
}