]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
machinectl: align table
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 11 Jun 2025 13:37:58 +0000 (22:37 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 11 Jun 2025 13:41:54 +0000 (22:41 +0900)
src/machine/machinectl.c

index 32849529c95393dd3ffa1d2f222e018269be0baf..146fe6e99c945212fc4be4be3d4b9b5ecad70d9e 100644 (file)
@@ -68,14 +68,14 @@ typedef enum MachineRunner {
 } MachineRunner;
 
 static const char* const machine_runner_table[_RUNNER_MAX] = {
-        [RUNNER_NSPAWN] = "nspawn",
+        [RUNNER_NSPAWN]  = "nspawn",
         [RUNNER_VMSPAWN] = "vmspawn",
 };
 
 DEFINE_PRIVATE_STRING_TABLE_LOOKUP_FROM_STRING(machine_runner, MachineRunner);
 
 static const char* const machine_runner_unit_prefix_table[_RUNNER_MAX] = {
-        [RUNNER_NSPAWN] = "systemd-nspawn",
+        [RUNNER_NSPAWN]  = "systemd-nspawn",
         [RUNNER_VMSPAWN] = "systemd-vmspawn",
 };