diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-12-30 16:54:28 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-12-30 16:58:19 +0100 |
commit | a6d20b89db8ee79b1a5f8188a680fea8047b145e (patch) | |
tree | ab08ac0cb92f9dd26f0171c6846760b4ec73d3e5 /docs | |
parent | 26e46617b9ef6cac9853854db5d5f6250a435392 (diff) | |
download | curl-a6d20b89db8ee79b1a5f8188a680fea8047b145e.tar.gz |
cleanup: fix two empty expression statement has no effect
Follow-up to 26e46617b9
Diffstat (limited to 'docs')
-rw-r--r-- | docs/examples/multi-single.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/multi-single.c b/docs/examples/multi-single.c index c30447492..2c64d2375 100644 --- a/docs/examples/multi-single.c +++ b/docs/examples/multi-single.c @@ -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 /* |