diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2024-11-29 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2024-11-30 15:27:15 +0500 |
commit | e5431fa6f5505e385c6f9367260717e9c47dc2ee (patch) | |
tree | 4cd2c2c3b225b48c8e7053432c41d7b6b6a3d5f8 /C/7zDec.c | |
parent | e008ce3976c087bfd21344af8f00a23cf69d4174 (diff) | |
download | 7zip-main.tar.gz 7zip-main.tar.bz2 7zip-main.zip |
Diffstat (limited to '')
-rw-r--r-- | C/7zDec.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* 7zDec.c -- Decoding from 7z folder | 1 | /* 7zDec.c -- Decoding from 7z folder |
2 | 2024-03-01 : Igor Pavlov : Public domain */ | 2 | : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #include "Precomp.h" | 4 | #include "Precomp.h" |
5 | 5 | ||
@@ -312,8 +312,9 @@ static BoolInt IS_MAIN_METHOD(UInt32 m) | |||
312 | case k_PPMD: | 312 | case k_PPMD: |
313 | #endif | 313 | #endif |
314 | return True; | 314 | return True; |
315 | default: | ||
316 | return False; | ||
315 | } | 317 | } |
316 | return False; | ||
317 | } | 318 | } |
318 | 319 | ||
319 | static BoolInt IS_SUPPORTED_CODER(const CSzCoderInfo *c) | 320 | static BoolInt IS_SUPPORTED_CODER(const CSzCoderInfo *c) |