From: Mike Yuan Date: Wed, 16 Oct 2024 19:41:20 +0000 (+0200) Subject: core/service: fix one wording X-Git-Tag: v257-rc1~147^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5b0e4f92e6d746025532fb4c0a085fb4b627264;p=thirdparty%2Fsystemd.git core/service: fix one wording --- diff --git a/src/core/service.c b/src/core/service.c index 5930fade068..d33abd16823 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) {