Skip to content

Commit

Permalink
Fix build failure if parallel xz is not available
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Sep 17, 2018
1 parent 8327a7a commit 901dfc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libutil/compression.cc
Expand Up @@ -250,7 +250,7 @@ struct XzCompressionSink : CompressionSink
ret = lzma_stream_encoder_mt(&strm, &mt_options);
done = true;
#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
}

Expand Down

0 comments on commit 901dfc7

Please sign in to comment.