]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
option: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 12 May 2026 16:57:12 +0000 (01:57 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 12 May 2026 16:57:12 +0000 (01:57 +0900)
src/shared/options.c

index 85ab3155bf867fba5367ab90b88991b5fccd85f5..34d02d2850e9c1e130e0b30ee336ec2a0276e1fb 100644 (file)
@@ -32,7 +32,7 @@ static void shift_arg(char* argv[], int target, int source) {
         assert(argv);
         assert(target <= source);
 
-        /* Move argv[source] before argv[target], shifting arguments inbetween */
+        /* Move argv[source] before argv[target], shifting the arguments in between. */
         char *saved = argv[source];
         memmove(argv + target + 1, argv + target, (source - target) * sizeof(char*));
         argv[target] = saved;