diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-04-26 15:00:40 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-04-26 15:00:40 -0400 |
commit | 7fb9586953580fc9b00fe1a3bf07ef9a805a8c06 (patch) | |
tree | 50a70c1cb2bc97feff19f25e5ad8e60c0d106021 /src/common/compress_zstd.c | |
parent | 4038202f89d97caf4d0a0b2d44d4111c4c4b2422 (diff) | |
download | tor-7fb9586953580fc9b00fe1a3bf07ef9a805a8c06.tar.gz tor-7fb9586953580fc9b00fe1a3bf07ef9a805a8c06.zip |
Fix compilation when lzma or zstd is absent
Diffstat (limited to 'src/common/compress_zstd.c')
-rw-r--r-- | src/common/compress_zstd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compress_zstd.c b/src/common/compress_zstd.c index 40b541247b..9c134fdf4e 100644 --- a/src/common/compress_zstd.c +++ b/src/common/compress_zstd.c @@ -237,7 +237,7 @@ tor_zstd_compress_new(int compress, #else // HAVE_ZSTD. (void)compress; (void)method; - (void)compression_level; + (void)level; return NULL; #endif // HAVE_ZSTD. |