diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-06-07 16:23:36 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2022-06-09 13:25:17 +0200 |
commit | c90821aa49e918473c873b93108c8e6755074b27 (patch) | |
tree | 59de8f8a1550a91bb8f78585cd6ef1b941a1e813 /src/shared/bus-util.h | |
parent | shared/bus-util: simplification (diff) | |
download | systemd-c90821aa49e918473c873b93108c8e6755074b27.tar.xz systemd-c90821aa49e918473c873b93108c8e6755074b27.zip |
shared/bus-util: rename variables to follow newer style
Diffstat (limited to '')
-rw-r--r-- | src/shared/bus-util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/bus-util.h b/src/shared/bus-util.h index 00514e359f..955cdcb57c 100644 --- a/src/shared/bus-util.h +++ b/src/shared/bus-util.h @@ -33,8 +33,8 @@ bool bus_error_is_unknown_service(const sd_bus_error *error); int bus_check_peercred(sd_bus *c); -int bus_connect_system_systemd(sd_bus **_bus); -int bus_connect_user_systemd(sd_bus **_bus); +int bus_connect_system_systemd(sd_bus **ret_bus); +int bus_connect_user_systemd(sd_bus **ret_bus); int bus_connect_transport(BusTransport transport, const char *host, bool user, sd_bus **bus); int bus_connect_transport_systemd(BusTransport transport, const char *host, bool user, sd_bus **bus); |