diff options
author | 2016-10-22 21:37:06 +0200 | |
---|---|---|
committer | 2016-10-22 21:37:06 +0200 | |
commit | e42ed88254f3c875974e142472da25f6d4346fa9 (patch) | |
tree | c8556d22100c98b0308a7310e65aa1d17ffd7095 /src/lib/util/unzip.cpp | |
parent | fc340e9e7d4d0a1bfaf863fa6676aab3f6259d35 (diff) |
there you go (nw)
Diffstat (limited to 'src/lib/util/unzip.cpp')
-rw-r--r-- | src/lib/util/unzip.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/unzip.cpp b/src/lib/util/unzip.cpp index a65bda9a99c..0b6c32011f0 100644 --- a/src/lib/util/unzip.cpp +++ b/src/lib/util/unzip.cpp @@ -620,7 +620,7 @@ class general_flag_reader public: general_flag_reader(std::uint16_t val) : m_value(val) { } - bool encrypted() const { return (m_value & 0x0001) !=0; } + bool encrypted() const { return (m_value & 0x0001) != 0; } bool implode_8k_dict() const { return (m_value & 0x0002) != 0; } bool implode_3_trees() const { return (m_value & 0x0004) != 0; } unsigned deflate_option() const { return unsigned((m_value >> 1) & 0x0003); } |