diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2023-05-12 21:36:50 +0200 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2023-05-13 00:26:38 +0200 |
commit | 7362947c3f3992cf3660b170f46bd80bb5fe1021 (patch) | |
tree | a1278e606ed13108c54a7e016352abf642a70dc0 | |
parent | test: merge machinectl edit/cat tests into TEST-13 (diff) | |
download | systemd-7362947c3f3992cf3660b170f46bd80bb5fe1021.tar.xz systemd-7362947c3f3992cf3660b170f46bd80bb5fe1021.zip |
machine,portable: fix a typo in an info message
-rw-r--r-- | src/machine/operation.c | 2 | ||||
-rw-r--r-- | src/portable/portabled-operation.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/machine/operation.c b/src/machine/operation.c index 49b6d31bdc..87c62a977b 100644 --- a/src/machine/operation.c +++ b/src/machine/operation.c @@ -15,7 +15,7 @@ static int operation_done(sd_event_source *s, const siginfo_t *si, void *userdat assert(si); - log_debug("Operating " PID_FMT " is now complete with code=%s status=%i", + log_debug("Operation " PID_FMT " is now complete with code=%s status=%i", o->pid, sigchld_code_to_string(si->si_code), si->si_status); diff --git a/src/portable/portabled-operation.c b/src/portable/portabled-operation.c index 6897ed0b28..53f33e52aa 100644 --- a/src/portable/portabled-operation.c +++ b/src/portable/portabled-operation.c @@ -14,7 +14,7 @@ static int operation_done(sd_event_source *s, const siginfo_t *si, void *userdat assert(si); - log_debug("Operating " PID_FMT " is now complete with code=%s status=%i", + log_debug("Operation " PID_FMT " is now complete with code=%s status=%i", o->pid, sigchld_code_to_string(si->si_code), si->si_status); |