mirror of
https://github.com/curl/curl.git
synced 2026-07-30 00:18:02 +03:00
code style: use spaces around equals signs
This commit is contained in:
parent
e155f38d1e
commit
6b84438d9a
144 changed files with 995 additions and 990 deletions
|
|
@ -77,7 +77,7 @@ static char *get_param_word(char **str, char **end_pos)
|
|||
while(ptr < *end_pos);
|
||||
*end_pos = ptr2;
|
||||
}
|
||||
while(*ptr && NULL==strchr(end_chars, *ptr))
|
||||
while(*ptr && NULL == strchr(end_chars, *ptr))
|
||||
++ptr;
|
||||
*str = ptr;
|
||||
return word_begin+1;
|
||||
|
|
@ -88,7 +88,7 @@ static char *get_param_word(char **str, char **end_pos)
|
|||
ptr = word_begin;
|
||||
}
|
||||
|
||||
while(*ptr && NULL==strchr(end_chars, *ptr))
|
||||
while(*ptr && NULL == strchr(end_chars, *ptr))
|
||||
++ptr;
|
||||
*str = *end_pos = ptr;
|
||||
return word_begin;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue