firmware-utils: fix all -Wformat warnings
[openwrt/openwrt.git] / tools / firmware-utils / src / dns313-header.c
index 3c72b09bfb234cf73661e87db7066a085df4527b..ab34dd6d024e6c2c10965b041d6b3d8e81e53221 100644 (file)
@@ -155,7 +155,7 @@ int main(int argc, char **argv)
        /* File + extended header size */
        bufsize = filesize + HEADER_SIZE;
 
-       printf("Allocate %08x bytes\n", bufsize);
+       printf("Allocate %08zx bytes\n", bufsize);
        buffer = malloc(bufsize);
        if (!buffer) {
                printf("OOM: could not allocate buffer\n");
@@ -223,7 +223,7 @@ int main(int argc, char **argv)
        be_wr(buffer + OFFSET_HCRC, sum);
        printf("header checksum: 0x%08x\n", sum);
 
-       printf("OUTFILE: %s, size: %08x bytes\n", pathout, bufsize);
+       printf("OUTFILE: %s, size: %08zx bytes\n", pathout, bufsize);
        fdout = open(pathout, O_RDWR|O_CREAT|O_TRUNC,S_IRWXU|S_IRGRP);
        if (!fdout) {
                printf("ERROR: could not open output file\n");