diff options
author | Baoquan He <bhe@redhat.com> | 2017-09-08 16:15:51 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-09-08 18:26:49 -0700 |
commit | 7c61bd6983b185272315722787cceacf5f5d2e7d (patch) | |
tree | 0f75ae6de00fd68c8e83c08cd81e8146cd6acd63 /lib | |
parent | da436528267ab45fb44ee52a28ebac85b8e24c3d (diff) | |
download | linux-7c61bd6983b185272315722787cceacf5f5d2e7d.tar.gz linux-7c61bd6983b185272315722787cceacf5f5d2e7d.tar.bz2 linux-7c61bd6983b185272315722787cceacf5f5d2e7d.zip |
lib/cmdline.c: remove meaningless comment
One line of code was commented out by c++ style comment for debugging, but
forgot removing it.
Clean it up.
Link: http://lkml.kernel.org/r/1503312113-11843-1-git-send-email-bhe@redhat.com
Signed-off-by: Baoquan He <bhe@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cmdline.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/cmdline.c b/lib/cmdline.c index 4c0888c4a68d..171c19b6888e 100644 --- a/lib/cmdline.c +++ b/lib/cmdline.c @@ -244,5 +244,4 @@ char *next_arg(char *args, char **param, char **val) /* Chew up trailing spaces. */ return skip_spaces(next); - //return next; } |