mirror of
https://github.com/curl/curl.git
synced 2026-08-24 16:53:34 +03:00
whitespace cleanup: no space first in conditionals
"if(a)" is our style, not "if( a )"
This commit is contained in:
parent
1b758b01c1
commit
889d1e973f
21 changed files with 106 additions and 105 deletions
|
|
@ -851,7 +851,7 @@ static int dprintf_formatf(
|
|||
size_t len;
|
||||
|
||||
str = (char *) p->data.str;
|
||||
if( str == NULL) {
|
||||
if(str == NULL) {
|
||||
/* Write null[] if there's space. */
|
||||
if(prec == -1 || prec >= (long) sizeof(null) - 1) {
|
||||
str = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue