aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/stream_encoder.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2011-04-10 20:37:36 +0300
committerLasse Collin <lasse.collin@tukaani.org>2011-04-10 20:37:36 +0300
commit352ac82db5d3f64585c07b39e4759388dec0e4d7 (patch)
tree258d424d81b2392d97fed5bc56d1ddc90a473303 /src/liblzma/common/stream_encoder.c
parentDOS: Update the docs and include notes about 8.3 filenames. (diff)
downloadxz-352ac82db5d3f64585c07b39e4759388dec0e4d7.tar.xz
liblzma: Make lzma_stream_encoder_init() static.
It's an internal function and it's not needed by anything outside stream_encoder.c.
Diffstat (limited to '')
-rw-r--r--src/liblzma/common/stream_encoder.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/liblzma/common/stream_encoder.c b/src/liblzma/common/stream_encoder.c
index 97a7a23a..b7d5cbf3 100644
--- a/src/liblzma/common/stream_encoder.c
+++ b/src/liblzma/common/stream_encoder.c
@@ -10,7 +10,6 @@
//
///////////////////////////////////////////////////////////////////////////////
-#include "stream_encoder.h"
#include "block_encoder.h"
#include "index_encoder.h"
@@ -262,11 +261,11 @@ stream_encoder_update(lzma_coder *coder, lzma_allocator *allocator,
}
-extern lzma_ret
-lzma_stream_encoder_init(lzma_next_coder *next, lzma_allocator *allocator,
+static lzma_ret
+stream_encoder_init(lzma_next_coder *next, lzma_allocator *allocator,
const lzma_filter *filters, lzma_check check)
{
- lzma_next_coder_init(&lzma_stream_encoder_init, next, allocator);
+ lzma_next_coder_init(&stream_encoder_init, next, allocator);
if (filters == NULL)
return LZMA_PROG_ERROR;
@@ -320,7 +319,7 @@ extern LZMA_API(lzma_ret)
lzma_stream_encoder(lzma_stream *strm,
const lzma_filter *filters, lzma_check check)
{
- lzma_next_strm_init(lzma_stream_encoder_init, strm, filters, check);
+ lzma_next_strm_init(stream_encoder_init, strm, filters, check);
strm->internal->supported_actions[LZMA_RUN] = true;
strm->internal->supported_actions[LZMA_SYNC_FLUSH] = true;