]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
import: align table
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 13 Aug 2025 06:22:41 +0000 (15:22 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 13 Aug 2025 14:44:58 +0000 (23:44 +0900)
src/import/import-compress.c

index 012fd2c3eddec83e3bd441941fb43e35603823b8..eb44fc9d604495eadfe0be82c9a4a2465bd1ce78 100644 (file)
@@ -589,15 +589,15 @@ int import_compress_finish(ImportCompress *c, void **buffer, size_t *buffer_size
 }
 
 static const char* const import_compress_type_table[_IMPORT_COMPRESS_TYPE_MAX] = {
-        [IMPORT_COMPRESS_UNKNOWN] = "unknown",
+        [IMPORT_COMPRESS_UNKNOWN]      = "unknown",
         [IMPORT_COMPRESS_UNCOMPRESSED] = "uncompressed",
-        [IMPORT_COMPRESS_XZ] = "xz",
-        [IMPORT_COMPRESS_GZIP] = "gzip",
+        [IMPORT_COMPRESS_XZ]           = "xz",
+        [IMPORT_COMPRESS_GZIP]         = "gzip",
 #if HAVE_BZIP2
-        [IMPORT_COMPRESS_BZIP2] = "bzip2",
+        [IMPORT_COMPRESS_BZIP2]        = "bzip2",
 #endif
 #if HAVE_ZSTD
-        [IMPORT_COMPRESS_ZSTD] = "zstd",
+        [IMPORT_COMPRESS_ZSTD]         = "zstd",
 #endif
 };