]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
sd-journal: realign flags
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 18 Jun 2024 08:24:47 +0000 (17:24 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 18 Jun 2024 08:57:40 +0000 (17:57 +0900)
src/libsystemd/sd-journal/journal-def.h

index 1b10f24aa9c5969d762e743cccd82893f34a8d79..c972fe98ce4fe4c5aa29e5fa02f577c1e029199d 100644 (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,
 };