examples: fix more empty expression statement has no effect

Follow-up to 26e46617b9
This commit is contained in:
Daniel Stenberg 2020-12-30 22:18:45 +01:00
parent a6d20b89db
commit 0a5b8af777
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
3 changed files with 15 additions and 12 deletions

View file

@ -315,7 +315,7 @@ int main(void)
*/
do {
int msgq = 0;;
int msgq = 0;
m = curl_multi_info_read(multi_handle, &msgq);
if(m && (m->msg == CURLMSG_DONE)) {
CURL *e = m->easy_handle;