Commit acb29f79 authored by Max Kellermann's avatar Max Kellermann

tag/Mask: fix yet another typo, this time in Unset()

parent cd364023
ver 0.21.21 (not yet released) ver 0.21.21 (not yet released)
* configuration
- fix bug in "metadata_to_use" setting
* archive * archive
- iso9660: skip empty file names to work around libcdio bug - iso9660: skip empty file names to work around libcdio bug
* decoder * decoder
......
...@@ -89,7 +89,7 @@ public: ...@@ -89,7 +89,7 @@ public:
} }
void Unset(TagType tag) { void Unset(TagType tag) {
*this |= ~TagMask(tag); *this &= ~TagMask(tag);
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment