mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Silence a compiler warning.
This commit is contained in:
parent
9373e81e18
commit
fa3ab0df8a
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue