diff options
author | AsciiWolf <mail@asciiwolf.com> | 2017-02-24 18:14:02 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-02-24 18:14:02 +0100 |
commit | 13e785f7a0d2c78fbd822b1157ef9d7ee3fef805 (patch) | |
tree | 168c1a8cd9b6132ef15c61a302d55303e66da06d /src/basic/proc-cmdline.c | |
parent | ecc0eab247da25a6767ccabd2162a4d03de6ee8c (diff) |
Fix missing space in comments (#5439)
Diffstat (limited to 'src/basic/proc-cmdline.c')
-rw-r--r-- | src/basic/proc-cmdline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/proc-cmdline.c b/src/basic/proc-cmdline.c index f703e7f145..8592a428d5 100644 --- a/src/basic/proc-cmdline.c +++ b/src/basic/proc-cmdline.c @@ -154,7 +154,7 @@ int proc_cmdline_get_key(const char *key, unsigned flags, char **value) { * * c) The "value" parameter is NULL. In this case a search for the exact "key" parameter is performed. * - * In all three cases, > 0 is returned if the key is found, 0 if not.*/ + * In all three cases, > 0 is returned if the key is found, 0 if not. */ if (isempty(key)) return -EINVAL; |