diff --git a/lib/mu-msg-sexp.cc b/lib/mu-msg-sexp.cc index 8b659a46..920695ba 100644 --- a/lib/mu-msg-sexp.cc +++ b/lib/mu-msg-sexp.cc @@ -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));