aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2016-08-12 07:14:01 +1200
committerMichael Kerrisk <mtk.manpages@gmail.com>2016-08-12 07:14:42 +1200
commitaa30354a3bccf54eadc27a5a6eb0d071f5fb5aab (patch)
tree0f563ea7920764bb4edc6b5e09abe07d4479c97f
parenta6865065335f2356336def002c72a38ab34632cc (diff)
downloadman-pages-aa30354a3bccf54eadc27a5a6eb0d071f5fb5aab.tar.gz
select_tut.2: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man2/select_tut.23
1 files changed, 2 insertions, 1 deletions
diff --git a/man2/select_tut.2 b/man2/select_tut.2
index 7e4f41d7ea..fd97446cda 100644
--- a/man2/select_tut.2
+++ b/man2/select_tut.2
@@ -670,7 +670,8 @@ main(int argc, char *argv[])
if (fd1 > 0 && buf1_avail < BUF_SIZE)
FD_SET(fd1, &readfds);
- /* Note: nfds is updated below, when fd1 is added to exceptfds. */
+ /* Note: nfds is updated below, when fd1 is added to
+ exceptfds. */
if (fd2 > 0 && buf2_avail < BUF_SIZE)
FD_SET(fd2, &readfds);