all: assorted updates and cleanups

This commit is contained in:
Markus F.X.J. Oberhumer
2023-02-05 17:20:32 +01:00
parent 163377d1a0
commit b8d9c2b755
56 changed files with 691 additions and 853 deletions
+1 -4
View File
@@ -25,12 +25,9 @@
<markus@oberhumer.com> <ezerotven+github@gmail.com>
*/
#include "conf.h"
#include "packer.h"
#include "linker.h"
//#include "filter.h"
/*************************************************************************
// compression method util
@@ -40,7 +37,7 @@ bool Packer::isValidCompressionMethod(int method)
{
if (M_IS_LZMA(method))
return true;
return (method >= M_NRV2B_LE32 && method <= M_LZMA);
return method >= M_NRV2B_LE32 && method <= M_LZMA;
}