]> wimlib.net Git - wimlib/blobdiff - src/header.c
begin_read(): Remove redundant check
[wimlib] / src / header.c
index 5b4d0b9a9441f49a2c7f73ea5a78a75f973b5214..3d60138339e527c8d9383da3330170625e5cc618 100644 (file)
@@ -113,8 +113,8 @@ int read_header(FILE *fp, struct wim_header *hdr, int open_flags)
                return WIMLIB_ERR_INVALID_PART_NUMBER;
        }
 
                return WIMLIB_ERR_INVALID_PART_NUMBER;
        }
 
-       if (!(open_flags & WIMLIB_OPEN_FLAG_SPLIT_OK)
-           && (hdr->part_number != 1 || hdr->total_parts != 1))
+       if (!(open_flags & WIMLIB_OPEN_FLAG_SPLIT_OK) &&
+           hdr->total_parts != 1)
        {
                ERROR("This WIM is part %u of a %u-part WIM",
                      hdr->part_number, hdr->total_parts);
        {
                ERROR("This WIM is part %u of a %u-part WIM",
                      hdr->part_number, hdr->total_parts);