mirror of
https://github.com/curl/curl.git
synced 2026-07-27 10:37:20 +03:00
cleanup: fix two empty expression statement has no effect
Follow-up to 26e46617b9
This commit is contained in:
parent
26e46617b9
commit
a6d20b89db
2 changed files with 9 additions and 6 deletions
|
|
@ -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
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue