X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Futil.c;h=b69d9bff328cb8564b7137ba62cb2407c4332e75;hp=b2e59e40417c3a4a555770a0d6d462f632466e6a;hb=dabcd6fe9a32f58709c513d6bf641773baa8f6aa;hpb=5695db8f27535e50a8159a226902687fe32ffe9a diff --git a/src/util.c b/src/util.c index b2e59e40..b69d9bff 100644 --- a/src/util.c +++ b/src/util.c @@ -162,9 +162,9 @@ wimlib_vmsg(const tchar *tag, const tchar *format, tfputs(tag, stderr); wimlib_vfprintf(stderr, format, va); if (perror && errno_save != 0) { - tchar buf[50]; + tchar buf[64]; int res; - res = tstrerror_r(errno_save, buf, sizeof(buf)); + res = tstrerror_r(errno_save, buf, ARRAY_LEN(buf)); if (res) { tsprintf(buf, T("unknown error (errno=%d)"), @@ -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]