[package] base-files: do not assume that "top" is busybox' top, but try to call the...
[openwrt.git] / tools / firmware-utils / src / mkzcfw.c
index d438f03..7674e70 100644 (file)
@@ -297,7 +297,7 @@ static int build_fw(void)
        /* fill firmware header */
        hdr = (struct fw_header *) p;
        hdr->magic = HOST_TO_LE32(MAGIC_FIRMWARE);
-       hdr->length = HOST_TO_LE32(buflen) - sizeof(struct fw_header);
+       hdr->length = HOST_TO_LE32(buflen - sizeof(struct fw_header));
        p += sizeof(struct fw_header);
 
        /* fill kernel block header */
This page took 0.023809 seconds and 4 git commands to generate.