Fix build failure if parallel xz is not available

This commit is contained in:
Eelco Dolstra 2018-09-17 16:36:11 +02:00
parent 8327a7a8fa
commit 901dfc7978
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -250,7 +250,7 @@ struct XzCompressionSink : CompressionSink
ret = lzma_stream_encoder_mt(&strm, &mt_options); ret = lzma_stream_encoder_mt(&strm, &mt_options);
done = true; done = true;
#else #else
printMsg(lvlError, "warning: parallel compression requested but not supported for metho d '%1%', falling back to single-threaded compression", method); printMsg(lvlError, "warning: parallel XZ compression requested but not supported, falling back to single-threaded compression");
#endif #endif
} }