diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-05-07 21:07:39 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-05-08 21:34:20 -0400 |
commit | 6866780115a7c0af034f287d965f4bf6b02c1e6d (patch) | |
tree | 22fb668edf9eee9b99d51172c1abfbe4494ead8e /src/journal/journal-internal.h | |
parent | fa13e4a78487971a5093db3fdc61cad224d47c16 (diff) |
Rearrange a few fields to reduce holes
Diffstat (limited to 'src/journal/journal-internal.h')
-rw-r--r-- | src/journal/journal-internal.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/journal/journal-internal.h b/src/journal/journal-internal.h index eea56e4713..c7e585d810 100644 --- a/src/journal/journal-internal.h +++ b/src/journal/journal-internal.h @@ -74,19 +74,20 @@ typedef enum LocationType { struct Location { LocationType type; + bool seqnum_set; + bool realtime_set; + bool monotonic_set; + bool xor_hash_set; + uint64_t seqnum; sd_id128_t seqnum_id; - bool seqnum_set; uint64_t realtime; - bool realtime_set; uint64_t monotonic; sd_id128_t boot_id; - bool monotonic_set; uint64_t xor_hash; - bool xor_hash_set; }; struct Directory { |