diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2012-07-15 11:41:40 +0300 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-07-16 12:16:29 +0200 |
commit | 49f43d5f91a99b23f745726aa351d8f159774357 (patch) | |
tree | adfb1f1dcf466bebfb9317479b6572dde083cba6 /src/core | |
parent | 4cb72937d3c10948e4904388ea27efae75775f08 (diff) |
Spelling fixes.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/load-fragment.c | 2 | ||||
-rw-r--r-- | src/core/shutdown.c | 2 | ||||
-rw-r--r-- | src/core/unit.h | 2 |
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; |