- Fabian Keil ran clang on the (lib)curl code, found a bunch of warnings and

contributed a range of patches to fix them.
This commit is contained in:
Daniel Stenberg 2009-06-10 21:26:11 +00:00
parent 9d18c0b156
commit 352177090f
10 changed files with 12 additions and 16 deletions

View file

@ -2702,7 +2702,6 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
break;
case 'Q':
/* QUOTE command to send to FTP server */
err = PARAM_OK;
switch(nextarg[0]) {
case '-':
/* prefixed with a dash makes it a POST TRANSFER one */
@ -3382,7 +3381,6 @@ static int myprogress (void *clientp,
percent = frac * 100.0f;
barwidth = bar->width - 7;
num = (int) (((double)barwidth) * frac);
i = 0;
for ( i = 0; i < num; i++ ) {
line[i] = '#';
}