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

View File

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