]> wimlib.net Git - wimlib/commitdiff
wimlib-imagex: Only say pipable WIMs are split when total_parts != 1
authorEric Biggers <ebiggers3@gmail.com>
Mon, 19 Aug 2013 05:27:15 +0000 (00:27 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Mon, 19 Aug 2013 05:27:15 +0000 (00:27 -0500)
programs/imagex.c

index be4b910eb024c55bd8917c27b265eda56c3456f0..f7a3620bd049fe43d31ad20af2bb3b322b7aa29e 100644 (file)
@@ -1090,9 +1090,11 @@ imagex_progress_func(enum wimlib_progress_msg msg,
                        imagex_printf(T("\n"));
                break;
        case WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN:
-               imagex_printf(T("\nReading split pipable WIM part %u of %u\n"),
-                             info->extract.part_number,
-                             info->extract.total_parts);
+               if (info->extract.total_parts != 1) {
+                       imagex_printf(T("\nReading split pipable WIM part %u of %u\n"),
+                                     info->extract.part_number,
+                                     info->extract.total_parts);
+               }
                break;
        case WIMLIB_PROGRESS_MSG_APPLY_TIMESTAMPS:
                if (info->extract.extract_root_wim_source_path[0] == T('\0'))