Commit 5f13a13c authored by captainwong's avatar captainwong

fix

parent 0bed63c8
......@@ -1235,8 +1235,8 @@ struct AdemcoPacket
}
// dump data
JLOG_HEX(pack, std::min(pack_len, 4096u));
JLOG_ASC(pack, std::min(pack_len, 4096u));
JLOG_HEX(pack, std::min(pack_len, size_t(4096u)));
JLOG_ASC(pack, std::min(pack_len, size_t(4096u)));
assert(0);
return ParseResult::RESULT_DATA_ERROR;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment