1
0
mirror of https://github.com/systemd/systemd synced 2024-07-09 04:26:06 +00:00

tree-wide: drop duplicated semicolons

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2022-07-05 21:48:55 +02:00
parent 6f52e1c63b
commit 891fc28b45
6 changed files with 6 additions and 6 deletions

View File

@ -527,7 +527,7 @@ static int ndisc_router_process_onlink_prefix(Link *link, sd_ndisc_router *rt) {
r = ndisc_request_route(TAKE_PTR(route), link, rt);
if (r < 0)
return log_link_error_errno(link, r, "Could not request prefix route: %m");;
return log_link_error_errno(link, r, "Could not request prefix route: %m");
return 0;
}

View File

@ -256,7 +256,7 @@ int link_set_sysctl(Link *link) {
r = link_set_ipv6_forward(link);
if (r < 0)
log_link_warning_errno(link, r, "Cannot configure IPv6 packet forwarding, ignoring: %m");;
log_link_warning_errno(link, r, "Cannot configure IPv6 packet forwarding, ignoring: %m");
r = link_set_ipv6_privacy_extensions(link);
if (r < 0)

View File

@ -811,7 +811,7 @@ static int resolve_service(sd_bus *bus, const char *name, const char *type, cons
while ((r = sd_bus_message_enter_container(reply, 'r', "iiay")) > 0) {
_cleanup_free_ char *pretty = NULL;
int ifindex, family, k;
union in_addr_union a;;
union in_addr_union a;
assert_cc(sizeof(int) == sizeof(int32_t));

View File

@ -200,7 +200,7 @@ int dnssd_load(Manager *manager) {
STRV_FOREACH_BACKWARDS(f, files) {
r = dnssd_service_load(manager, *f);
if (r < 0)
log_warning_errno(r, "Failed to load '%s': %m", *f);;
log_warning_errno(r, "Failed to load '%s': %m", *f);
}
return 0;

View File

@ -224,7 +224,7 @@ static int execute(
r = write_mode(modes);
if (r < 0)
return log_error_errno(r, "Failed to write mode to /sys/power/disk: %m");;
return log_error_errno(r, "Failed to write mode to /sys/power/disk: %m");
}
/* Pass an action string to the call-outs. This is mostly our operation string, except if the

View File

@ -2128,7 +2128,7 @@ static int udev_rule_apply_token_to_event(
if (r == -ENOMEM)
return log_oom();
if (r < 0)
return log_rule_error_errno(dev, rules, r, "Failed to store SECLABEL{%s}='%s': %m", name, label);;
return log_rule_error_errno(dev, rules, r, "Failed to store SECLABEL{%s}='%s': %m", name, label);
log_rule_debug(dev, rules, "SECLABEL{%s}='%s'", name, label);