From: Yu Watanabe Date: Tue, 20 Feb 2024 00:23:15 +0000 (+0900) Subject: vconsole-setup: fix typo X-Git-Tag: v256-rc1~806 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ad2874b247387f4d68b6e25e41a001b2bd5afd7;p=thirdparty%2Fsystemd.git vconsole-setup: fix typo Follow-up for 190ff0d0a8d1fc367ec04296f24cd1cab5b7543b. --- diff --git a/src/vconsole/vconsole-setup.c b/src/vconsole/vconsole-setup.c index bc32b2267cf..2a73d01d7e7 100644 --- a/src/vconsole/vconsole-setup.c +++ b/src/vconsole/vconsole-setup.c @@ -522,7 +522,7 @@ static int find_source_vc(char **ret_path, unsigned *ret_idx) { assert(ret_idx); /* This function returns an fd when it finds a candidate. When it fails, it returns the first error - * that occured when the VC was being opened or -EBUSY when it finds some VCs but all are busy + * that occurred when the VC was being opened or -EBUSY when it finds some VCs but all are busy * otherwise -ENOENT when there is no allocated VC. */ for (unsigned i = 1; i <= 63; i++) { @@ -640,7 +640,7 @@ static int run(int argc, char **argv) { if (fd < 0) { /* We found only busy VCs, which might happen during the boot process when the boot splash is - * displayed on the only allocated VC. In this case we don't interfer and avoid initializing + * displayed on the only allocated VC. In this case we don't interfere and avoid initializing * the VC partially as some operations are likely to fail. */ log_notice("All allocated VCs are currently busy, skipping initialization of font and keyboard settings."); return EXIT_SUCCESS;