hle_ipc: Rename ReadBufferSpan to ReadBuffer

This commit is contained in:
ameerj
2022-12-25 14:31:53 -05:00
parent 59c0f85407
commit a1490d77ac
33 changed files with 97 additions and 97 deletions

View File

@ -121,8 +121,8 @@ private:
}
void ImportTicket(Kernel::HLERequestContext& ctx) {
const auto ticket = ctx.ReadBufferSpan();
[[maybe_unused]] const auto cert = ctx.ReadBufferSpan(1);
const auto ticket = ctx.ReadBuffer();
[[maybe_unused]] const auto cert = ctx.ReadBuffer(1);
if (ticket.size() < sizeof(Core::Crypto::Ticket)) {
LOG_ERROR(Service_ETicket, "The input buffer is not large enough!");