Silence a compiler warning.

This commit is contained in:
Lasse Collin 2008-09-11 10:46:14 +03:00
parent 9373e81e18
commit fa3ab0df8a
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ create_thread(void *(*func)(thread_data *t), thread_data *t)
static int static int
single_init(thread_data *t) single_init(thread_data *t)
{ {
lzma_ret ret; lzma_ret ret = LZMA_PROG_ERROR;
if (opt_mode == MODE_COMPRESS) { if (opt_mode == MODE_COMPRESS) {
switch (opt_header) { switch (opt_header) {