aboutsummaryrefslogtreecommitdiff
path: root/src/lzma/process.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2008-09-11 10:46:14 +0300
committerLasse Collin <lasse.collin@tukaani.org>2008-09-11 10:46:14 +0300
commitfa3ab0df8ae7a8a1ad55b52266dc0fd387458671 (patch)
tree42fcec05c503cf583146a8a9332584fa8f0a7180 /src/lzma/process.c
parentBumped version to 4.999.6alpha. (diff)
downloadxz-fa3ab0df8ae7a8a1ad55b52266dc0fd387458671.tar.xz
Silence a compiler warning.
Diffstat (limited to 'src/lzma/process.c')
-rw-r--r--src/lzma/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lzma/process.c b/src/lzma/process.c
index b24de698..46c27df6 100644
--- a/src/lzma/process.c
+++ b/src/lzma/process.c
@@ -152,7 +152,7 @@ create_thread(void *(*func)(thread_data *t), thread_data *t)
static int
single_init(thread_data *t)
{
- lzma_ret ret;
+ lzma_ret ret = LZMA_PROG_ERROR;
if (opt_mode == MODE_COMPRESS) {
switch (opt_header) {