1
0
mirror of https://github.com/systemd/systemd synced 2024-07-01 07:34:28 +00:00

sd-journal: realign flags

This commit is contained in:
Yu Watanabe 2024-06-18 17:24:47 +09:00
parent 144498e7e6
commit 36cb02ec80

View File

@ -44,9 +44,9 @@ typedef enum ObjectType {
/* Object flags (note that src/basic/compress.h uses the same values for the compression types) */
enum {
OBJECT_COMPRESSED_XZ = 1 << 0,
OBJECT_COMPRESSED_LZ4 = 1 << 1,
OBJECT_COMPRESSED_ZSTD = 1 << 2,
OBJECT_COMPRESSED_XZ = 1 << 0,
OBJECT_COMPRESSED_LZ4 = 1 << 1,
OBJECT_COMPRESSED_ZSTD = 1 << 2,
_OBJECT_COMPRESSED_MASK = OBJECT_COMPRESSED_XZ | OBJECT_COMPRESSED_LZ4 | OBJECT_COMPRESSED_ZSTD,
};