diff options
author | Stefan Schweter <stefan@schweter.it> | 2016-10-02 19:37:21 +0200 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2016-10-04 17:06:25 +0200 |
commit | 629ff674ac48653703440ab16998adb03391f986 (patch) | |
tree | 4007dfaabf886f076ab3a5aa085688cab14adba4 /src/basic | |
parent | 5076f4219ee3f25a39e3520943270c2c915b03d1 (diff) |
tree-wide: remove consecutive duplicate words in comments
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/escape.c | 2 | ||||
-rw-r--r-- | src/basic/util.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/basic/escape.c b/src/basic/escape.c index 01daf11ce7..4a1ec4505e 100644 --- a/src/basic/escape.c +++ b/src/basic/escape.c @@ -333,7 +333,7 @@ int cunescape_length_with_prefix(const char *s, size_t length, const char *prefi assert(remaining > 0); if (*f != '\\') { - /* A literal literal, copy verbatim */ + /* A literal, copy verbatim */ *(t++) = *f; continue; } diff --git a/src/basic/util.c b/src/basic/util.c index 9d66d28eb7..ec7939dc83 100644 --- a/src/basic/util.c +++ b/src/basic/util.c @@ -467,7 +467,7 @@ bool in_initrd(void) { * 2. the root file system must be a memory file system * * The second check is extra paranoia, since misdetecting an - * initrd can have bad bad consequences due the initrd + * initrd can have bad consequences due the initrd * emptying when transititioning to the main systemd. */ |