diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-26 18:40:23 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-26 18:46:03 +0100 |
commit | b8e891e699e1336c5527f8203e4e8f67c9bbeb84 (patch) | |
tree | c20109013c9f19679c1a3b7c9d0541ed4abb980f /src/journal/journal-file.h | |
parent | a676e66535e12458ea6d366a653f8dd60f982504 (diff) |
journal: make table const
Diffstat (limited to 'src/journal/journal-file.h')
-rw-r--r-- | src/journal/journal-file.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/journal/journal-file.h b/src/journal/journal-file.h index 773ece07e8..21b0821b6b 100644 --- a/src/journal/journal-file.h +++ b/src/journal/journal-file.h @@ -54,11 +54,11 @@ typedef struct JournalFile { int flags; int prot; - bool writable; - bool compress; - bool seal; + bool writable:1; + bool compress:1; + bool seal:1; - bool tail_entry_monotonic_valid; + bool tail_entry_monotonic_valid:1; direction_t last_direction; |