Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/tio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/tio.c b/common/tio.c
index 0dffff4..ecb279f 100644
--- a/common/tio.c
+++ b/common/tio.c
@@ -414,7 +414,7 @@ static int tio_flush_nonblock(TFILE *fp)
{
struct pollfd fds[1];
int rv;
- /* wait for activity */
+ /* see if we can write without blocking */
fds[0].fd=fp->fd;
fds[0].events=POLLOUT;
rv=poll(fds,1,0);