summaryrefslogtreecommitdiff
path: root/src/machine/operation.c
diff options
context:
space:
mode:
authorMichael Biebl <mbiebl@gmail.com>2016-07-12 02:47:25 +0200
committerGitHub <noreply@github.com>2016-07-12 02:47:25 +0200
commite18ec3c71d6450de898cd46e659b560e18ee8430 (patch)
tree1028bd5ea783209d44aefa0acacd277d2dea44ab /src/machine/operation.c
parentd6cdc4cd4b58cfff4b44e1201e54f05b4a38d2d4 (diff)
parent61233823aa4b0fe9605e0a7cd77261b3c5bca8e9 (diff)
Merge pull request #3702 from torstehu/fix-typo
treewide: fix typos and remove accidental repetition of words
Diffstat (limited to 'src/machine/operation.c')
-rw-r--r--src/machine/operation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/machine/operation.c b/src/machine/operation.c
index 8f8321a8b3..2bf93cb493 100644
--- a/src/machine/operation.c
+++ b/src/machine/operation.c
@@ -30,7 +30,7 @@ static int operation_done(sd_event_source *s, const siginfo_t *si, void *userdat
assert(o);
assert(si);
- log_debug("Operating " PID_FMT " is now complete with with code=%s status=%i",
+ log_debug("Operating " PID_FMT " is now complete with code=%s status=%i",
o->pid,
sigchld_code_to_string(si->si_code), si->si_status);
@@ -59,7 +59,7 @@ static int operation_done(sd_event_source *s, const siginfo_t *si, void *userdat
}
} else {
- /* The default default operaton when done is to simply return an error on failure or an empty success
+ /* The default operation when done is to simply return an error on failure or an empty success
* message on success. */
if (r < 0)
goto fail;