diff options
author | fangxiuning <53254947+JackFangXN@users.noreply.github.com> | 2020-08-28 23:45:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-28 17:45:54 +0200 |
commit | c53aafb7b5bbbfd8336b189040e183fdc5394b5a (patch) | |
tree | 99435c008707fc762a4e0b4965d15764b6b83fd7 /src/core/dbus.c | |
parent | cd17bb6e71c364049b18046a1b20475988de8ff3 (diff) | |
download | systemd-c53aafb7b5bbbfd8336b189040e183fdc5394b5a.tar.gz |
tree-wide: drop pointless zero initialization (#16884)
tree-wide: drop pointless zero initialization
Diffstat (limited to 'src/core/dbus.c')
-rw-r--r-- | src/core/dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus.c b/src/core/dbus.c index 76bb91d0ea..8958af48ce 100644 --- a/src/core/dbus.c +++ b/src/core/dbus.c @@ -1149,7 +1149,7 @@ void bus_track_serialize(sd_bus_track *t, FILE *f, const char *prefix) { } int bus_track_coldplug(Manager *m, sd_bus_track **t, bool recursive, char **l) { - int r = 0; + int r; assert(m); assert(t); |