summaryrefslogtreecommitdiff
path: root/src/tag
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-02-22 12:44:36 +0100
committerMax Kellermann <max@musicpd.org>2019-02-22 12:44:36 +0100
commite8f2f980488318fb0e37c1fe6bc1300e97327b6e (patch)
treef0f0b32d50adde50bb5f5ebf2c78584a74d83175 /src/tag
parentc672b60d07003d7017c051314bdbdc1f13afffee (diff)
tag/Mask: fix another typo, this time in `operator^=`
Similar to commit ff1ff1e54a25ed80abdca9e7e63b36db150ec766
Diffstat (limited to 'src/tag')
-rw-r--r--src/tag/Mask.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag/Mask.hxx b/src/tag/Mask.hxx
index 5a03a5d95..4b6126bc5 100644
--- a/src/tag/Mask.hxx
+++ b/src/tag/Mask.hxx
@@ -72,7 +72,7 @@ public:
}
TagMask &operator^=(TagMask other) {
- value |= other.value;
+ value ^= other.value;
return *this;
}