diff options
author | Mike Yuan <me@yhndnzj.com> | 2024-06-05 20:41:27 +0200 |
---|---|---|
committer | Mike Yuan <me@yhndnzj.com> | 2024-06-28 15:43:21 +0200 |
commit | 8d178f702d7c3b632233299b98158e34ef171c74 (patch) | |
tree | fca0d9919bc54fd36d4ce78a35fec29d1c0d602d /src/core/dbus-slice.c | |
parent | core: do not drop CGroupRuntime when unit stops, but only on GC (diff) | |
download | systemd-8d178f702d7c3b632233299b98158e34ef171c74.tar.xz systemd-8d178f702d7c3b632233299b98158e34ef171c74.zip |
core: cast ignored retval of unit_realize_cgroup to void
Diffstat (limited to 'src/core/dbus-slice.c')
-rw-r--r-- | src/core/dbus-slice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus-slice.c b/src/core/dbus-slice.c index de41d651da..6e3fcb0f88 100644 --- a/src/core/dbus-slice.c +++ b/src/core/dbus-slice.c @@ -28,7 +28,7 @@ int bus_slice_set_property( int bus_slice_commit_properties(Unit *u) { assert(u); - unit_realize_cgroup(u); + (void) unit_realize_cgroup(u); return 0; } |