Unverified Commit bda4ef41 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

curl: correct the switch() logic in ourWriteOut

Follow-up to e431daf0, 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
parent e431daf0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;