From: Lennart Poettering Date: Thu, 23 Apr 2020 08:46:10 +0000 (+0200) Subject: journal: use a bitfield where appropriate X-Git-Tag: v246-rc1~315^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6fea3063b0b91bd9444362e101af0638075b5fb;p=thirdparty%2Fsystemd.git journal: use a bitfield where appropriate --- diff --git a/src/journal/journal-internal.h b/src/journal/journal-internal.h index 1454df602b8..e1fb01a6e38 100644 --- a/src/journal/journal-internal.h +++ b/src/journal/journal-internal.h @@ -41,10 +41,10 @@ struct Match { struct Location { LocationType type; - bool seqnum_set; - bool realtime_set; - bool monotonic_set; - bool xor_hash_set; + bool seqnum_set:1; + bool realtime_set:1; + bool monotonic_set:1; + bool xor_hash_set:1; uint64_t seqnum; sd_id128_t seqnum_id;