Skip to content

Commit

Permalink
Fixing issue created by new mingw compiler.
Browse files Browse the repository at this point in the history
  • Loading branch information
U-GOOGLE\muolo committed Sep 25, 2020
1 parent d7ce92c commit 3bd7596
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollectdclient/network_parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ static int network_parse(void *data, size_t data_size, lcc_security_level_t sl,

if ((sz < 5) || (((size_t)sz - 4) > b->len)) {
DEBUG("lcc_network_parse(): invalid 'sz' field: sz = %" PRIu16
", b->len = %" PRIsz "\n",
", b->len = %" PRIu64 "\n",
sz, b->len);
return EINVAL;
}
Expand Down

0 comments on commit 3bd7596

Please sign in to comment.