summaryrefslogtreecommitdiffstats
path: root/sys-utils
diff options
context:
space:
mode:
Diffstat (limited to 'sys-utils')
-rw-r--r--sys-utils/chcpu.c2
-rw-r--r--sys-utils/dmesg.c2
-rw-r--r--sys-utils/fallocate.c2
-rw-r--r--sys-utils/fsfreeze.c2
-rw-r--r--sys-utils/hwclock.c4
-rw-r--r--sys-utils/mount.c2
-rw-r--r--sys-utils/swapon.c2
-rw-r--r--sys-utils/umount.c2
-rw-r--r--sys-utils/wdctl.c2
9 files changed, 10 insertions, 10 deletions
diff --git a/sys-utils/chcpu.c b/sys-utils/chcpu.c
index 92019a912..003cf59c9 100644
--- a/sys-utils/chcpu.c
+++ b/sys-utils/chcpu.c
@@ -273,7 +273,7 @@ int main(int argc, char *argv[])
{ NULL, 0, 0, 0 }
};
- static const ul_excl_t excl[] = { /* rows and cols in in ASCII order */
+ static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
{ 'c','d','e','g','p' },
{ 0 }
};
diff --git a/sys-utils/dmesg.c b/sys-utils/dmesg.c
index a608cf574..6bd4a4a89 100644
--- a/sys-utils/dmesg.c
+++ b/sys-utils/dmesg.c
@@ -1261,7 +1261,7 @@ int main(int argc, char *argv[])
{ NULL, 0, NULL, 0 }
};
- static const ul_excl_t excl[] = { /* rows and cols in in ASCII order */
+ static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
{ 'C','D','E','c','n','r' }, /* clear,off,on,read-clear,level,raw*/
{ 'H','r' }, /* human, raw */
{ 'L','r' }, /* color, raw */
diff --git a/sys-utils/fallocate.c b/sys-utils/fallocate.c
index 8cbb91c23..c8068082f 100644
--- a/sys-utils/fallocate.c
+++ b/sys-utils/fallocate.c
@@ -309,7 +309,7 @@ int main(int argc, char **argv)
{ NULL, 0, 0, 0 }
};
- static const ul_excl_t excl[] = { /* rows and cols in in ASCII order */
+ static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
{ 'c', 'd', 'p', 'z' },
{ 'c', 'n' },
{ 'x', 'c', 'd', 'i', 'n', 'p', 'z'},
diff --git a/sys-utils/fsfreeze.c b/sys-utils/fsfreeze.c
index d837d2f39..294c44103 100644
--- a/sys-utils/fsfreeze.c
+++ b/sys-utils/fsfreeze.c
@@ -68,7 +68,7 @@ int main(int argc, char **argv)
{ NULL, 0, 0, 0 }
};
- static const ul_excl_t excl[] = { /* rows and cols in in ASCII order */
+ static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
{ 'f','u' }, /* freeze, unfreeze */
{ 0 }
};
diff --git a/sys-utils/hwclock.c b/sys-utils/hwclock.c
index 059ee4099..6de09fda8 100644
--- a/sys-utils/hwclock.c
+++ b/sys-utils/hwclock.c
@@ -652,7 +652,7 @@ display_time(const bool hclock_valid, struct timeval hwctime)
* runnable by issuing the command "date" to the /bin/sh shell. That means
* in must be in the current PATH.
*
- * If anything goes wrong (and many things can), we return return code 10
+ * If anything goes wrong (and many things can), we return code 10
* and arbitrary *time_p. Otherwise, return code is 0 and *time_p is valid.
*/
static int interpret_date_string(const struct hwclock_control *ctl,
@@ -1527,7 +1527,7 @@ int main(int argc, char **argv)
{NULL, 0, NULL, 0}
};
- static const ul_excl_t excl[] = { /* rows and cols in in ASCII order */
+ static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
{ 'a','r','s','w',
OPT_GET, OPT_GETEPOCH, OPT_PREDICT_HC,
OPT_SET, OPT_SETEPOCH, OPT_SYSTZ },
diff --git a/sys-utils/mount.c b/sys-utils/mount.c
index b45de78ed..0b55500f2 100644
--- a/sys-utils/mount.c
+++ b/sys-utils/mount.c
@@ -868,7 +868,7 @@ int main(int argc, char **argv)
{ NULL, 0, 0, 0 }
};
- static const ul_excl_t excl[] = { /* rows and cols in in ASCII order */
+ static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
{ 'B','M','R' }, /* bind,move,rbind */
{ 'L','U', MOUNT_OPT_SOURCE }, /* label,uuid,source */
{ 0 }
diff --git a/sys-utils/swapon.c b/sys-utils/swapon.c
index 0bf95a5cc..0982093d5 100644
--- a/sys-utils/swapon.c
+++ b/sys-utils/swapon.c
@@ -862,7 +862,7 @@ int main(int argc, char *argv[])
{ NULL, 0, 0, 0 }
};
- static const ul_excl_t excl[] = { /* rows and cols in in ASCII order */
+ static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
{ 'a','o','s', SHOW_OPTION },
{ 'a','o', BYTES_OPTION },
{ 'a','o', NOHEADINGS_OPTION },
diff --git a/sys-utils/umount.c b/sys-utils/umount.c
index d502124ed..640e2cd0d 100644
--- a/sys-utils/umount.c
+++ b/sys-utils/umount.c
@@ -527,7 +527,7 @@ int main(int argc, char **argv)
{ NULL, 0, 0, 0 }
};
- static const ul_excl_t excl[] = { /* rows and cols in in ASCII order */
+ static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
{ 'A','a' }, /* all-targets,all */
{ 'R','a' }, /* recursive,all */
{ 'O','R','t'}, /* options,recursive,types */
diff --git a/sys-utils/wdctl.c b/sys-utils/wdctl.c
index 49711f0cf..441b7abf9 100644
--- a/sys-utils/wdctl.c
+++ b/sys-utils/wdctl.c
@@ -495,7 +495,7 @@ int main(int argc, char *argv[])
{ NULL, 0, NULL, 0 }
};
- static const ul_excl_t excl[] = { /* rows and cols in in ASCII order */
+ static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
{ 'F','f' }, /* noflags,flags*/
{ 0 }
};