Temporary hack to let app finish even if it is calling unimplemented transaction

This commit is contained in:
Jarek Syrylak
2018-07-28 13:18:34 +01:00
parent bfcad07dc0
commit 2c3069f590

View File

@@ -551,7 +551,7 @@ private:
} else if (transaction == TransactionId::CancelBuffer) {
LOG_CRITICAL(Service_VI, "(STUBBED) called, transaction=CancelBuffer");
} else {
ASSERT_MSG(false, "Unimplemented");
UNIMPLEMENTED();
}
IPC::ResponseBuilder rb{ctx, 2};