From: Eric Biggers Date: Mon, 19 Aug 2013 05:27:15 +0000 (-0500) Subject: wimlib-imagex: Only say pipable WIMs are split when total_parts != 1 X-Git-Tag: v1.5.0~29 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=4a1c54ca01dc3a5af6410383e67e5378a9a1369d wimlib-imagex: Only say pipable WIMs are split when total_parts != 1 --- diff --git a/programs/imagex.c b/programs/imagex.c index be4b910e..f7a3620b 100644 --- a/programs/imagex.c +++ b/programs/imagex.c @@ -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'))