examples/mtdpart/mtdpart_main.c: Fix printf format warnings
This commit is contained in:
parent
2aa2e0d897
commit
ffc32ad70d
@ -236,7 +236,8 @@ int main(int argc, FAR char *argv[])
|
|||||||
partsize = nblocks * geo.blocksize;
|
partsize = nblocks * geo.blocksize;
|
||||||
|
|
||||||
printf(" No. partitions: %u\n", CONFIG_EXAMPLES_MTDPART_NPARTITIONS);
|
printf(" No. partitions: %u\n", CONFIG_EXAMPLES_MTDPART_NPARTITIONS);
|
||||||
printf(" Partition size: %lu Blocks (%lu bytes)\n", nblocks, partsize);
|
printf(" Partition size: %ju Blocks (%lu bytes)\n", (uintmax_t)nblocks,
|
||||||
|
partsize);
|
||||||
|
|
||||||
/* Now create MTD FLASH partitions */
|
/* Now create MTD FLASH partitions */
|
||||||
|
|
||||||
@ -483,7 +484,7 @@ int main(int argc, FAR char *argv[])
|
|||||||
nbytes = read(fd, buffer, geo.blocksize);
|
nbytes = read(fd, buffer, geo.blocksize);
|
||||||
if (nbytes != 0)
|
if (nbytes != 0)
|
||||||
{
|
{
|
||||||
printf("ERROR: Expected end-of-file from %s failed: %d %d\n",
|
printf("ERROR: Expected end-of-file from %s failed: %zd %d\n",
|
||||||
charname, nbytes, errno);
|
charname, nbytes, errno);
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
exit(22);
|
exit(22);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user