[Yunq] Fix bug in logging reply errors.

This commit is contained in:
Drew Galbraith 2023-10-25 20:40:39 -07:00
parent 3e4fdfee84
commit b85af8d0f8
6 changed files with 15 additions and 13 deletions

View file

@ -68,7 +68,7 @@ void YellowstoneServerBase::ServerThread() {
reply_err = ZReplyPortSend(reply_port_cap, kHeaderSize + resp_length, resp_buffer.RawPtr(), resp_cap.UsedSlots(), resp_cap.RawPtr());
}
if (reply_err != glcr::OK) {
dbgln("Error in reply: %x", recv_err);
dbgln("Error in reply: %x", reply_err);
}
}