From: Eric Biggers Date: Sun, 19 May 2013 20:07:56 +0000 (-0500) Subject: imagex: Make error messages more consistent X-Git-Tag: v1.4.1~92 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=bae9a26f52c209a0c8931eefb2e3150e4b6ac749 imagex: Make error messages more consistent --- diff --git a/programs/imagex.c b/programs/imagex.c index 79eb08db..0a1f77b0 100644 --- a/programs/imagex.c +++ b/programs/imagex.c @@ -1928,7 +1928,7 @@ imagex_dir(int argc, tchar **argv) * choose that one; otherwise, print an error. */ num_images = wimlib_get_num_images(w); if (num_images != 1) { - imagex_error(T("The file \"%"TS"\" contains %d images; Please " + imagex_error(T("\"%"TS"\" contains %d images; Please " "select one."), wimfile, num_images); usage(DIR); ret = -1; @@ -2699,7 +2699,7 @@ imagex_mount_rw_or_ro(int argc, tchar **argv) image = 1; num_images = wimlib_get_num_images(w); if (num_images != 1) { - imagex_error(T("The file \"%"TS"\" contains %d images; Please " + imagex_error(T("\"%"TS"\" contains %d images; Please " "select one."), wimfile, num_images); usage((mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) ? MOUNTRW : MOUNT);