diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-04-22 23:01:30 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-04-27 09:09:35 +0200 |
commit | 889d1e973fb718a77c5000141d724ce03863af23 (patch) | |
tree | 5ad6b1d0238fbda0f2dd113ae2b65f35d2374db5 /lib/mprintf.c | |
parent | 1b758b01c170633e4514483c3605eaad9645973e (diff) | |
download | curl-889d1e973fb718a77c5000141d724ce03863af23.tar.gz |
whitespace cleanup: no space first in conditionals
"if(a)" is our style, not "if( a )"
Diffstat (limited to 'lib/mprintf.c')
-rw-r--r-- | lib/mprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mprintf.c b/lib/mprintf.c index ca8e7ff2a..dd7a1e09b 100644 --- a/lib/mprintf.c +++ b/lib/mprintf.c @@ -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; |