]> wimlib.net Git - wimlib/blobdiff - src/header.c
Apply timestamps correctly when extracting WIM image
[wimlib] / src / header.c
index 7cd25b1158cbba214a29f030acb27e544e0f8f55..7a9d5fd0810420c12aed71b85137873cd39da9ac 100644 (file)
@@ -96,8 +96,7 @@ int read_header(FILE *fp, struct wim_header *hdr, int split_ok)
                ERROR("Unexpected chunk size of %u! Ask the author to "
                      "implement support for other chunk sizes.",
                      chunk_size);
-               ERROR("(Or it might just be that the WIM header is "
-                     "invalid.)", chunk_size);
+               ERROR("(Or it might just be that the WIM header is invalid.)");
                return WIMLIB_ERR_INVALID_CHUNK_SIZE;
        }
 
@@ -185,6 +184,7 @@ int write_header(const struct wim_header *hdr, FILE *out_fp)
                ERROR_WITH_ERRNO("Failed to write WIM header");
                return WIMLIB_ERR_WRITE;
        }
+       DEBUG("Done writing WIM header");
        return 0;
 }