diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-04-04 19:03:27 +0200 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2024-04-04 20:10:28 +0200 |
commit | 6a363a838abc095afecbb4654b5adab09a793273 (patch) | |
tree | 705888810afb177a3b6ad22dbbce196edcb63061 | |
parent | TEST-50: add tests for riscv{32,64} (diff) | |
download | systemd-6a363a838abc095afecbb4654b5adab09a793273.tar.xz systemd-6a363a838abc095afecbb4654b5adab09a793273.zip |
udevadm-test: insert missing line break
Addresses post-merge comment:
https://github.com/systemd/systemd/commit/03b6879f4d45c49264708aef872fd05af30ddcf0#r140587790
-rw-r--r-- | src/udev/udevadm-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udevadm-test.c b/src/udev/udevadm-test.c index b575c0de83..b6a0cb18d5 100644 --- a/src/udev/udevadm-test.c +++ b/src/udev/udevadm-test.c @@ -181,7 +181,7 @@ int test_main(int argc, char *argv[], void *userdata) { if (sd_device_get_ifindex(dev, NULL) >= 0) { if (!isempty(event->name)) - printf("%sNetwork interface name:%s %s\n", ansi_highlight(), ansi_normal(), event->name); + printf("%sNetwork interface name:%s\n %s\n", ansi_highlight(), ansi_normal(), event->name); if (!strv_isempty(event->altnames)) { bool space = true; |