mirror of
https://github.com/curl/curl.git
synced 2025-04-12 16:20:35 +08: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
@ -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…
x
Reference in New Issue
Block a user