]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
varlink-idl: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 18 Jun 2024 00:11:48 +0000 (09:11 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 18 Jun 2024 00:12:29 +0000 (09:12 +0900)
Follow-ups for fbb69c0306d434153ca85b227c7d42b9c92872e4.

src/shared/varlink-idl.c

index e100137a7578e291a510363e701a93cbf8fb5965..7e24ff7cc0d7f3ab1b68bfc5486283fa8323ef8b 100644 (file)
@@ -245,7 +245,7 @@ static int varlink_idl_format_all_fields(
                 } else
                         fputs(",\n", f);
 
-                /* We found a field we want to output. In this case, output all immediately preceeding
+                /* We found a field we want to output. In this case, output all immediately preceding
                  * comments first. First, find the first comment in the series before. */
                 const VarlinkField *start_comment = NULL;
                 for (const VarlinkField *c1 = field; c1 > symbol->fields; c1--) {
@@ -379,7 +379,7 @@ static int varlink_idl_format_all_symbols(
 
                 fputs("\n", f);
 
-                /* Symbol comments we'll only output if we are outputing the symbol they belong to. Scan
+                /* Symbol comments we'll only output if we are outputting the symbol they belong to. Scan
                  * backwards for symbol comments. */
                 const VarlinkSymbol *const*start_comment = NULL;
                 for (const VarlinkSymbol *const*c1 = symbol; c1 > interface->symbols; c1--) {