mirror of
https://github.com/curl/curl.git
synced 2026-07-01 01:39:13 +03:00
curl: correct the switch() logic in ourWriteOut
Follow-up to e431daf013, as I did the wrong correction for a compiler
warning. It should be a break and not a fall-through.
Pointed-out-by: Frank Gevaerts
This commit is contained in:
parent
e431daf013
commit
bda4ef417a
1 changed files with 1 additions and 1 deletions
|
|
@ -324,7 +324,7 @@ void ourWriteOut(CURL *curl, struct OutStruct *outs, const char *writeinfo)
|
|||
curl_easy_getinfo(curl, CURLINFO_SCHEME,
|
||||
&stringp))
|
||||
fprintf(stream, "%s", stringp);
|
||||
/* FALLTHROUGH */
|
||||
break;
|
||||
case VAR_STDOUT:
|
||||
stream = stdout;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue