From: Eric Biggers Date: Wed, 1 Jan 2014 22:21:29 +0000 (-0600) Subject: Fix error string for WIMLIB_ERR_INVALID_COMPRESSION_TYPE X-Git-Tag: v1.6.0~28 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=b806698c70408249101ecd6c17549b035ac59798 Fix error string for WIMLIB_ERR_INVALID_COMPRESSION_TYPE --- diff --git a/src/util.c b/src/util.c index 2d151478..b69d9bff 100644 --- a/src/util.c +++ b/src/util.c @@ -304,8 +304,7 @@ static const tchar *error_strings[] = { [WIMLIB_ERR_INVALID_CHUNK_SIZE] = T("The WIM chunk size was invalid"), [WIMLIB_ERR_INVALID_COMPRESSION_TYPE] - = T("The WIM is compressed, but is not marked as having LZX or " - "XPRESS compression"), + = T("The WIM compression type was invalid"), [WIMLIB_ERR_INVALID_HEADER] = T("The WIM header was invalid"), [WIMLIB_ERR_INVALID_IMAGE]