summaryrefslogtreecommitdiff
path: root/src/tag
diff options
context:
space:
mode:
authorkaliko <kaliko@azylum.org>2019-02-02 15:14:31 +0100
committerkaliko <kaliko@azylum.org>2019-02-02 15:14:31 +0100
commitff1ff1e54a25ed80abdca9e7e63b36db150ec766 (patch)
tree6fe67211601b3ce19923bf203df606235c81db66 /src/tag
parent42b22187c89a0032b4aff1722ef01f3aaedffcec (diff)
Fixed typo in TagMask
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 625427174..5a03a5d95 100644
--- a/src/tag/Mask.hxx
+++ b/src/tag/Mask.hxx
@@ -62,7 +62,7 @@ public:
}
TagMask &operator&=(TagMask other) {
- value |= other.value;
+ value &= other.value;
return *this;
}