aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tag/Tag.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tag/Tag.cxx b/src/tag/Tag.cxx
index ac96f40b2..acfd24260 100644
--- a/src/tag/Tag.cxx
+++ b/src/tag/Tag.cxx
@@ -92,8 +92,8 @@ Tag::Tag(const Tag &other)
Tag *
Tag::Merge(const Tag &base, const Tag &add)
{
- TagBuilder builder(base);
- builder.Complement(add);
+ TagBuilder builder(add);
+ builder.Complement(base);
return builder.Commit();
}