summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/load-fragment.c2
-rw-r--r--src/core/shutdown.c2
-rw-r--r--src/core/unit.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c
index e0e42acbb4..748ab55d54 100644
--- a/src/core/load-fragment.c
+++ b/src/core/load-fragment.c
@@ -1910,7 +1910,7 @@ int config_parse_unit_blkio_bandwidth(const char *filename, unsigned line, const
}
if (parse_bytes(l[1], &bytes) < 0 || bytes <= 0) {
- log_error("[%s:%u] Failed to parse block IO bandwith value, ignoring: %s", filename, line, rvalue);
+ log_error("[%s:%u] Failed to parse block IO bandwidth value, ignoring: %s", filename, line, rvalue);
strv_free(l);
return 0;
}
diff --git a/src/core/shutdown.c b/src/core/shutdown.c
index 1c2bf372b5..78dccfb724 100644
--- a/src/core/shutdown.c
+++ b/src/core/shutdown.c
@@ -116,7 +116,7 @@ static int pivot_to_new_root(void) {
if (pivot_root(".", "oldroot") < 0) {
log_error("pivot failed: %m");
- /* only chroot if pivot root succeded */
+ /* only chroot if pivot root succeeded */
return -errno;
}
diff --git a/src/core/unit.h b/src/core/unit.h
index 61a85d7bee..45849a4b12 100644
--- a/src/core/unit.h
+++ b/src/core/unit.h
@@ -220,7 +220,7 @@ struct Unit {
/* Ignore this unit when snapshotting */
bool ignore_on_snapshot;
- /* Did the last condition check suceed? */
+ /* Did the last condition check succeed? */
bool condition_result;
bool in_load_queue:1;