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

Similar to commits e8f2f98048 and
ff1ff1e54a

Closes https://github.com/MusicPlayerDaemon/MPD/issues/783
This commit is contained in:
Max Kellermann 2020-03-11 20:34:02 +01:00
parent cd364023ae
commit acb29f792f
2 changed files with 3 additions and 1 deletions

2
NEWS
View File

@ -1,4 +1,6 @@
ver 0.21.21 (not yet released)
* configuration
- fix bug in "metadata_to_use" setting
* archive
- iso9660: skip empty file names to work around libcdio bug
* decoder

View File

@ -89,7 +89,7 @@ public:
}
void Unset(TagType tag) {
*this |= ~TagMask(tag);
*this &= ~TagMask(tag);
}
};