aboutsummaryrefslogtreecommitdiff
path: root/lib/common/comp_opt.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2021-06-25 14:14:26 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2021-06-25 17:49:11 +0200
commitc578e5ca80370c9fc832f4a535bd8444971759e0 (patch)
treefb9296dd97bf5039391730716c4a6d2e808d2219 /lib/common/comp_opt.c
parenta32b5a9c793e4f4a4577837b73e783386842db02 (diff)
Add default cases for every switch block
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/common/comp_opt.c')
-rw-r--r--lib/common/comp_opt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/common/comp_opt.c b/lib/common/comp_opt.c
index f77ac20..1cbdf52 100644
--- a/lib/common/comp_opt.c
+++ b/lib/common/comp_opt.c
@@ -210,6 +210,8 @@ int compressor_cfg_init_options(sqfs_compressor_config_t *cfg,
case OPT_PB: cfg->opt.xz.pb = ival; break;
case OPT_WINDOW: cfg->opt.gzip.window_size = ival; break;
case OPT_DICT: cfg->opt.xz.dict_size = ival; break;
+ default:
+ break;
}
}