netutils/tftpc/tftpc_get.c: Fix a syslog format

This commit is contained in:
YAMAMOTO Takashi 2020-11-25 07:35:46 +09:00 committed by Xiang Xiao
parent eeded9daa1
commit 5a4bf6b349

View File

@ -333,7 +333,7 @@ static ssize_t tftp_write(FAR void *ctx, uint32_t offset, FAR uint8_t *buf,
/* Handle partial writes */
ninfo("Wrote %d bytes to file\n", nbyteswritten);
ninfo("Wrote %zd bytes to file\n", nbyteswritten);
left -= nbyteswritten;
buf += nbyteswritten;
}