]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
udev: drop duplicate whitespaces 10927/head
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 26 Nov 2018 02:53:21 +0000 (11:53 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 26 Nov 2018 02:53:21 +0000 (11:53 +0900)
src/udev/net/ethtool-util.c
src/udev/net/link-config.c
src/udev/udev-builtin-keyboard.c
src/udev/udev-ctrl.c
src/udev/udev-rules.c

index 177b273e48694d0049256b7add6bf50eadedfcea..bc0deaf347c111165cc85d5ec3607b90badbd008 100644 (file)
@@ -574,7 +574,7 @@ static int set_sset(int fd, struct ifreq *ifr, const struct ethtool_link_usettin
 
 /* If autonegotiation is disabled, the speed and duplex represent the fixed link
  * mode and are writable if the driver supports multiple link modes. If it is
- * enabled then they are read-only. If the link  is up they represent the negotiated
+ * enabled then they are read-only. If the link is up they represent the negotiated
  * link mode; if the link is down, the speed is 0, %SPEED_UNKNOWN or the highest
  * enabled speed and @duplex is %DUPLEX_UNKNOWN or the best enabled duplex mode.
  */
index becaffe0d6cb2911749f8579cb1700d332c2baa8..6703a9d7a3867e40e69fa56f478b17220e492ab0 100644 (file)
@@ -370,7 +370,7 @@ int link_config_apply(link_config_ctx *ctx, link_config *config,
         if (r < 0) {
 
                 if (config->port != _NET_DEV_PORT_INVALID)
-                        log_warning_errno(r,  "Could not set port (%s) of %s: %m", port_to_string(config->port), old_name);
+                        log_warning_errno(r, "Could not set port (%s) of %s: %m", port_to_string(config->port), old_name);
 
                 if (!eqzero(config->advertise))
                         log_warning_errno(r, "Could not set advertise mode: %m"); /* TODO: include modes in the log message. */
index 2df3d92acf60852ab7c98b360b79d96711619071..cb49a17c33d2057f9888a5d669b88c29e8a5ec2f 100644 (file)
@@ -193,7 +193,7 @@ static int builtin_keyboard(sd_device *dev, int argc, char *argv[], bool test) {
                                 keycode++;
 
                                 release[release_count] = scancode;
-                                if (release_count <  ELEMENTSOF(release)-1)
+                                if (release_count < ELEMENTSOF(release)-1)
                                         release_count++;
 
                                 if (keycode[0] == '\0')
index c4abe4fc7e23862fdeed07be4c76f9f6ba5fdf00..6ea74c7bf70e66bc9d229185d5739433718f1313 100644 (file)
@@ -245,7 +245,7 @@ static int ctrl_send(struct udev_ctrl *uctrl, enum udev_ctrl_msg_type type, int
                 pfd[0].fd = uctrl->sock;
                 pfd[0].events = POLLIN;
                 r = poll(pfd, 1, timeout * MSEC_PER_SEC);
-                if (r  < 0) {
+                if (r < 0) {
                         if (errno == EINTR)
                                 continue;
                         err = -errno;
@@ -327,7 +327,7 @@ struct udev_ctrl_msg *udev_ctrl_receive_msg(struct udev_ctrl_connection *conn) {
                 pfd[0].events = POLLIN;
 
                 r = poll(pfd, 1, 10000);
-                if (r  < 0) {
+                if (r < 0) {
                         if (errno == EINTR)
                                 continue;
                         goto err;
index c8f068b0b771af8c37e69124ed76613bebebaa3f..f6f640a21614384abdb8da095d6f21086aff3562 100644 (file)
@@ -203,7 +203,7 @@ struct token {
                         union {
                                 unsigned attr_off;
                                 unsigned rule_goto;
-                                mode_t  mode;
+                                mode_t mode;
                                 uid_t uid;
                                 gid_t gid;
                                 int devlink_prio;
@@ -234,7 +234,7 @@ static const char *operation_str(enum operation_type type) {
                 [OP_REMOVE] =           "remove",
                 [OP_ASSIGN] =           "assign",
                 [OP_ASSIGN_FINAL] =     "assign-final",
-}        ;
+        };
 
         return operation_strs[type];
 }