htcs: hook up manager impl to (unimplemented) service

This commit is contained in:
Michael Scire 2021-02-17 22:34:05 -08:00 committed by SciresM
parent 1541985222
commit abff428212
5 changed files with 170 additions and 2 deletions

View file

@ -131,7 +131,7 @@ namespace ams::htcs::impl {
/* Invoke our implementation. */
s32 err;
s64 recv_size;
const Result result = m_impl->Recv(std::addressof(err), std::addressof(recv_size), buffer, size, desc, flags);
const Result result = m_impl->Receive(std::addressof(err), std::addressof(recv_size), buffer, size, desc, flags);
/* Set output. */
if (R_SUCCEEDED(result)) {