From ff1ff1e54a25ed80abdca9e7e63b36db150ec766 Mon Sep 17 00:00:00 2001 From: kaliko Date: Sat, 2 Feb 2019 15:14:31 +0100 Subject: [PATCH] Fixed typo in TagMask --- src/tag/Mask.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }