Remove silly superflous parenthesis.
This commit is contained in:
parent
beae3ea770
commit
0d0a305bf3
14 changed files with 31 additions and 31 deletions
|
@ -464,13 +464,13 @@ getin(s_char **what, s_char **p, int *arg, s_char *buf)
|
|||
if (**what == '\0')
|
||||
return END;
|
||||
while (**what && isspace(**what))
|
||||
(*what)++;
|
||||
*what++;
|
||||
if (**what == '\0')
|
||||
return RET_SYN;
|
||||
for (*p = *what; **p && !isspace(**p); (*p)++) /* skip non spaces */
|
||||
for (*p = *what; **p && !isspace(**p); *p++) /* skip non spaces */
|
||||
continue;
|
||||
while (**p && isspace(**p))
|
||||
(*p)++;
|
||||
*p++;
|
||||
if (**p == '\0')
|
||||
return RET_SYN;
|
||||
*arg = atoi(*p);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue