reassemble_test: Add an explicit cast [-Wformat=]

This commit is contained in:
João Valverde 2021-09-25 21:30:20 +01:00
parent acffc56148
commit 047542b587
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ print_fd(fragment_head *fd, gboolean is_head) {
int i;
g_assert_true(fd != NULL);
printf(" %16p %16p %3u %3u %3u", fd, fd->next, fd->frame, fd->offset, fd->len);
printf(" %16p %16p %3u %3u %3u", (void *)fd, (void *)(fd->next), fd->frame, fd->offset, fd->len);
if (is_head) {
printf(" %3u %3u", fd->datalen, fd->reassembled_in);
} else {