summaryrefslogtreecommitdiff
path: root/docs/examples/multi-single.c
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/multi-single.c')
-rw-r--r--docs/examples/multi-single.c2
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
/*