Fix a compile warning: comparison of unsigned enum expression < 0 is always false

Get this warning when compiling Settings.c on the Mac OS X with clang-800.0.42.1.
Settings.c:447:28: warning: comparison of unsigned enum expression < 0 is always false [-Wtautological-compare]
         if (this->hLayout < 0 || this->hLayout >= LAST_HEADER_LAYOUT)
             ~~~~~~~~~~~~~ ^ ~

This patch fixes the problem.
This commit is contained in:
hwangcc23 2022-04-04 23:29:48 +08:00 committed by BenBE
parent 4ccad46045
commit 72c56691ec
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ in the source distribution for its full text.
typedef enum HeaderLayout_ {
HF_INVALID = -1,
HF_TWO_50_50,
HF_TWO_33_67,
HF_TWO_67_33,