tree-wide: drop double newline
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 1 Nov 2019 09:33:24 +0000 (18:33 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 3 Nov 2019 15:30:32 +0000 (00:30 +0900)
17 files changed:
src/basic/format-util.c
src/basic/login-util.c
src/busctl/busctl.c
src/core/swap.c
src/libsystemd/sd-netlink/generic-netlink.c
src/network/networkctl.c
src/network/networkd-link.h
src/shared/cgroup-setup.c
src/shared/efi-loader.c
src/shared/ethtool-util.c
src/shared/ethtool-util.h
src/systemctl/systemctl.c
src/test/test-calendarspec.c
src/test/test-date.c
src/test/test-env-util.c
src/test/test-strv.c
src/test/test-unit-file.c

index 1a73225..b4144e0 100644 (file)
@@ -1,6 +1,5 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 
-
 #include "format-util.h"
 #include "memory-util.h"
 #include "stdio-util.h"
index 5c8e557..9313926 100644 (file)
@@ -1,6 +1,5 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 
-
 #include "login-util.h"
 #include "string-util.h"
 
index 8475c5b..3ed8f21 100644 (file)
@@ -342,8 +342,6 @@ static int list_bus_names(int argc, char **argv, void *userdata) {
         if (r < 0)
                 return log_error_errno(r, "Failed to show table: %m");
 
-
-
         return 0;
 }
 
index c184afa..e4b0186 100644 (file)
@@ -727,7 +727,6 @@ static void swap_enter_signal(Swap *s, SwapState state, SwapResult f) {
         if (s->result == SWAP_SUCCESS)
                 s->result = f;
 
-
         r = unit_kill_context(UNIT(s),
                               &s->kill_context,
                               state_to_kill_operation(s, state),
@@ -929,7 +928,6 @@ static int swap_stop(Unit *u) {
                 swap_enter_signal(s, SWAP_DEACTIVATING_SIGKILL, SWAP_SUCCESS);
                 return 0;
 
-
         default:
                 assert_not_reached("Unexpected state.");
         }
index 2576f48..b4971da 100644 (file)
@@ -99,7 +99,6 @@ static int lookup_id(sd_netlink *nl, sd_genl_family family, uint16_t *id) {
                 return 0;
         }
 
-
         r = sd_genl_message_new(nl, SD_GENL_ID_CTRL, CTRL_CMD_GETFAMILY, &req);
         if (r < 0)
                 return r;
index 5a87408..a43a179 100644 (file)
@@ -1812,7 +1812,6 @@ static int link_renew(int argc, char *argv[], void *userdata) {
         return k;
 }
 
-
 static int verb_reload(int argc, char *argv[], void *userdata) {
         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
         _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
index 0b62326..c8b8241 100644 (file)
@@ -145,7 +145,6 @@ typedef struct Link {
         struct rtnl_link_stats64 stats_old, stats_new;
         bool stats_updated;
 
-
         /* All kinds of DNS configuration */
         struct in_addr_data *dns;
         unsigned n_dns;
index ddcd156..e8398cb 100644 (file)
@@ -149,7 +149,6 @@ int cg_blkio_weight_parse(const char *s, uint64_t *ret) {
         return 0;
 }
 
-
 static int trim_cb(const char *path, const struct stat *sb, int typeflag, struct FTW *ftwbuf) {
         assert(path);
         assert(sb);
index 46e1870..3d1df09 100644 (file)
@@ -181,7 +181,6 @@ int efi_set_reboot_to_firmware(bool value) {
         return 0;
 }
 
-
 static ssize_t utf16_size(const uint16_t *s, size_t buf_len_bytes) {
         size_t l = 0;
 
index e29b81f..8fec1a8 100644 (file)
@@ -411,7 +411,6 @@ int ethtool_set_nic_buffer_size(int *fd, const char *ifname, netdev_ring_param *
         return 0;
 }
 
-
 static int get_stringset(int fd, struct ifreq *ifr, int stringset_id, struct ethtool_gstrings **gstrings) {
         _cleanup_free_ struct ethtool_gstrings *strings = NULL;
         struct {
index 5dd7800..d408bcd 100644 (file)
@@ -87,7 +87,6 @@ typedef struct netdev_ring_param {
         bool tx_pending_set;
 } netdev_ring_param;
 
-
 int ethtool_get_driver(int *fd, const char *ifname, char **ret);
 int ethtool_get_link_info(int *fd, const char *ifname,
                           int *ret_autonegotiation, size_t *ret_speed,
index 257b6d9..b2dafd7 100644 (file)
@@ -804,7 +804,6 @@ static int expand_names(sd_bus *bus, char **names, const char* suffix, char ***r
         return 0;
 }
 
-
 static int list_units(int argc, char *argv[], void *userdata) {
         _cleanup_free_ UnitInfo *unit_infos = NULL;
         _cleanup_(message_set_freep) Set *replies = NULL;
index 0798799..899e4b5 100644 (file)
@@ -1,6 +1,5 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 
-
 #include "alloc-util.h"
 #include "calendarspec.h"
 #include "errno-util.h"
index 6c6efc3..7d27cfa 100644 (file)
@@ -1,6 +1,5 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 
-
 #include "alloc-util.h"
 #include "string-util.h"
 #include "tests.h"
index cb4ee7a..f0ffe89 100644 (file)
@@ -1,6 +1,5 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 
-
 #include "env-util.h"
 #include "fd-util.h"
 #include "fileio.h"
index bc61fc9..f31ea6f 100644 (file)
@@ -1,6 +1,5 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 
-
 #include "alloc-util.h"
 #include "escape.h"
 #include "nulstr-util.h"
index f0186b0..6021164 100644 (file)
@@ -56,7 +56,6 @@ static void test_unit_file_build_name_map(char **ids) {
         if (r == 0)
                 log_debug("Cache rebuild skipped based on mtime.");
 
-
         char **id;
         STRV_FOREACH(id, ids) {
                  const char *fragment, *name;