Skip to content
Snippets Groups Projects
Commit 3347ced8 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

added a default in the switch in an attempt to avoid the moot "will never be

executed" warning by gcc 3.4.0
parent 592686be
No related branches found
No related tags found
No related merge requests found
......@@ -1562,6 +1562,8 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
if(str2num(&config->retry_maxtime, nextarg))
return PARAM_BAD_NUMERIC;
break;
default:
break;
}
break;
case '#': /* added 19990617 larsa */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment