diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-02-15 07:47:17 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-02-15 10:15:04 +0100 |
commit | 0f1f933b6e91333e7c7fe20b2f5db599c6b6f239 (patch) | |
tree | 5ef57846a731853724c87bdbc23dd62f73ebb330 /src/fsck | |
parent | ci: switch back to meson-0.56.2 (diff) | |
download | systemd-0f1f933b6e91333e7c7fe20b2f5db599c6b6f239.tar.xz systemd-0f1f933b6e91333e7c7fe20b2f5db599c6b6f239.zip |
tree-wide: fix typo
Diffstat (limited to 'src/fsck')
-rw-r--r-- | src/fsck/fsck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fsck/fsck.c b/src/fsck/fsck.c index 94aa31e71a..584d441c94 100644 --- a/src/fsck/fsck.c +++ b/src/fsck/fsck.c @@ -208,7 +208,7 @@ static int process_progress(int fd, FILE* console) { p = percent(pass, cur, max); r = fprintf(console, "\r%s: fsck %3.1f%% complete...\r", device, p); if (r < 0) - return -EIO; /* No point in continuing if something happend to our output stream */ + return -EIO; /* No point in continuing if something happened to our output stream */ fflush(console); clear = MAX(clear, r); |