fuzz: avoid extraneous printing

This commit is contained in:
Matt Johnston 2021-03-04 23:57:12 +08:00
parent 03481aba06
commit f193e95a3e

View File

@ -354,8 +354,8 @@ const void* fuzz_get_algo(const algo_type *algos, const char* name) {
}
void fuzz_dump(const unsigned char* data, size_t len) {
TRACE(("dump %zu", len))
if (fuzz.dumping) {
TRACE(("dump %zu", len))
assert(atomicio(vwrite, fuzz.recv_dumpfd, (void*)data, len) == len);
}
}