summaryrefslogtreecommitdiff
path: root/src/fsck
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2021-02-15 15:47:17 +0900
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-02-15 10:15:04 +0100
commit0f1f933b6e91333e7c7fe20b2f5db599c6b6f239 (patch)
tree5ef57846a731853724c87bdbc23dd62f73ebb330 /src/fsck
parentc39e36203ff79a831c93dfb9380c967cd7fdbb99 (diff)
downloadsystemd-0f1f933b6e91333e7c7fe20b2f5db599c6b6f239.tar.gz
tree-wide: fix typo
Diffstat (limited to 'src/fsck')
-rw-r--r--src/fsck/fsck.c2
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);