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

@ -163,7 +163,7 @@ int main(void)
* easy handles but *we* need to clean them up when they are done.
*/
do {
int msgq = 0;;
int msgq = 0;
m = curl_multi_info_read(multi, &msgq);
if(m && (m->msg == CURLMSG_DONE)) {
CURL *e = m->easy_handle;