diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-03-13 21:20:01 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-03-13 23:42:17 -0400 |
commit | dc75168823540076b354135f6e2de7a9a978fbca (patch) | |
tree | f68468cd05daeb0c557e21432a260dd7a007bb19 /src/network/networkd-network.c | |
parent | 2ae56591b5b25b1ee33e40612f1ae0593218d56c (diff) |
Use space after a silencing (void)
We were using a space more often than not, and this way is
codified in CODING_STYLE.
Diffstat (limited to 'src/network/networkd-network.c')
-rw-r--r-- | src/network/networkd-network.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkd-network.c b/src/network/networkd-network.c index f7f6eaf7fd..141c36f254 100644 --- a/src/network/networkd-network.c +++ b/src/network/networkd-network.c @@ -294,7 +294,7 @@ int network_get(Manager *manager, struct udev_device *device, attr = udev_device_get_sysattr_value(device, "name_assign_type"); if (attr) - (void)safe_atou8(attr, &name_assign_type); + (void) safe_atou8(attr, &name_assign_type); if (name_assign_type == NET_NAME_ENUM) log_warning("%-*s: found matching network '%s', based on potentially unpredictable ifname", |