cleanup: fix two empty expression statement has no effect

Follow-up to 26e46617b9
This commit is contained in:
Daniel Stenberg 2020-12-30 16:54:28 +01:00
parent 26e46617b9
commit a6d20b89db
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 9 additions and 6 deletions

View file

@ -40,7 +40,7 @@
/* Portable sleep for platforms other than Windows. */
#define WAITMS(x) \
struct timeval wait = { 0, (x) * 1000 }; \
(void)select(0, NULL, NULL, NULL, &wait);
(void)select(0, NULL, NULL, NULL, &wait)
#endif
/*