Skip to content

Commit

Permalink
Restyled by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits committed Apr 3, 2022
1 parent 7750cec commit 39155af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion toxcore/DHT_fuzz_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ void TestUnpackNodes(Fuzz_Data &input)
if (packed_count > 0) {
Logger *logger = logger_new();
std::vector<uint8_t> packed(packed_count * PACKED_NODE_SIZE_IP6);
const int packed_size = pack_nodes(logger, packed.data(), packed.size(), nodes, packed_count);
const int packed_size
= pack_nodes(logger, packed.data(), packed.size(), nodes, packed_count);
LOGGER_ASSERT(logger, packed_size == processed_data_len,
"packed size (%d) != unpacked size (%d)", packed_size, processed_data_len);
logger_kill(logger);
Expand Down

0 comments on commit 39155af

Please sign in to comment.