summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMike Yuan <me@yhndnzj.com>2024-10-16 21:41:20 +0200
committerMike Yuan <me@yhndnzj.com>2024-10-22 19:51:02 +0200
commitf5b0e4f92e6d746025532fb4c0a085fb4b627264 (patch)
tree148b45fb17be61398a59b6bcbd2c74ce5c632dc9 /src
parentcore/service: add missing serialization for Service.live_mount_result (diff)
downloadsystemd-f5b0e4f92e6d746025532fb4c0a085fb4b627264.tar.xz
systemd-f5b0e4f92e6d746025532fb4c0a085fb4b627264.zip
core/service: fix one wording
Diffstat (limited to 'src')
-rw-r--r--src/core/service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/service.c b/src/core/service.c
index 5930fade06..d33abd1682 100644
--- a/src/core/service.c
+++ b/src/core/service.c
@@ -1262,7 +1262,7 @@ static void service_search_main_pid(Service *s) {
r = unit_watch_pidref(UNIT(s), &s->main_pid, /* exclusive= */ false);
if (r < 0)
/* FIXME: we need to do something here */
- log_unit_warning_errno(UNIT(s), r, "Failed to watch PID "PID_FMT" from: %m", s->main_pid.pid);
+ log_unit_warning_errno(UNIT(s), r, "Failed to watch main PID "PID_FMT": %m", s->main_pid.pid);
}
static void service_set_state(Service *s, ServiceState state) {