[Yunq] Fix bug in logging reply errors.
This commit is contained in:
parent
3e4fdfee84
commit
b85af8d0f8
6 changed files with 15 additions and 13 deletions
|
|
@ -68,7 +68,7 @@ void DenaliServerBase::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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue