mu-msg-sexp: correctly mask date/time bits

Typo fix.
This commit is contained in:
Dirk-Jan C. Binnema 2020-06-10 21:47:01 +03:00
parent 2f8850ea86
commit 6a7449c7e3
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ add_date_and_size (Node::Seq& items, MuMsg *msg)
Node::Seq dseq;
dseq.add((unsigned)(t >> 16));
dseq.add((unsigned)(t && 0xffff));
dseq.add((unsigned)(t & 0xffff));
dseq.add(0);
items.add_prop(":date", std::move(dseq));