diff options
author | Jason Hobbs <jason.hobbs@calxeda.com> | 2011-08-23 11:06:53 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-17 22:25:34 +0200 |
commit | ce2d4c9532b338e39f033ef75ae57bcb71c3389e (patch) | |
tree | 45172706ca0087bacb5662b46f671d685d41f34c /common | |
parent | 93337abbfe2951c63a4e7b450da1848c6c69217f (diff) | |
download | u-boot-ce2d4c9532b338e39f033ef75ae57bcb71c3389e.zip u-boot-ce2d4c9532b338e39f033ef75ae57bcb71c3389e.tar.gz u-boot-ce2d4c9532b338e39f033ef75ae57bcb71c3389e.tar.bz2 |
cosmetic: remove unneeded curly braces
This prevents a checkpatch warning in the patch to use isblank
Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/main.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/common/main.c b/common/main.c index 3adadfd..d812aa1 100644 --- a/common/main.c +++ b/common/main.c @@ -1097,9 +1097,8 @@ int parse_line (char *line, char *argv[]) while (nargs < CONFIG_SYS_MAXARGS) { /* skip any white space */ - while ((*line == ' ') || (*line == '\t')) { + while ((*line == ' ') || (*line == '\t')) ++line; - } if (*line == '\0') { /* end of line, no more args */ argv[nargs] = NULL; @@ -1112,9 +1111,8 @@ int parse_line (char *line, char *argv[]) argv[nargs++] = line; /* begin of argument string */ /* find end of string */ - while (*line && (*line != ' ') && (*line != '\t')) { + while (*line && (*line != ' ') && (*line != '\t')) ++line; - } if (*line == '\0') { /* end of line, no more args */ argv[nargs] = NULL; |