service: Use ReadBufferSpan where it is trivial to do so

This commit is contained in:
ameerj 2022-12-25 13:42:32 -05:00
parent fbc375f0de
commit 7ffd624248
31 changed files with 78 additions and 77 deletions

View file

@ -72,7 +72,7 @@ private:
IPC::RequestParser rp{ctx};
const auto unknown_1 = rp.Pop<u64>();
[[maybe_unused]] const auto unknown_2 = ctx.ReadBuffer();
[[maybe_unused]] const auto unknown_2 = ctx.ReadBufferSpan();
LOG_WARNING(Service_AOC, "(STUBBED) called, unknown_1={}", unknown_1);
@ -84,7 +84,7 @@ private:
IPC::RequestParser rp{ctx};
const auto unknown_1 = rp.Pop<u64>();
[[maybe_unused]] const auto unknown_2 = ctx.ReadBuffer();
[[maybe_unused]] const auto unknown_2 = ctx.ReadBufferSpan();
LOG_WARNING(Service_AOC, "(STUBBED) called, unknown_1={}", unknown_1);