summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2013-11-05 12:44:55 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2013-11-05 12:44:55 +0100
commitc4b9214a0fe23f1b1196bdfb5addcba013855cb3 (patch)
tree5c65db721939e7044a9172a547b54c3c59c94946
parent025f1082b6c9573772472cc9039c2e10225c2c42 (diff)
downloadstrace-c4b9214a0fe23f1b1196bdfb5addcba013855cb3.tar.gz
strace-c4b9214a0fe23f1b1196bdfb5addcba013855cb3.tar.bz2
strace-c4b9214a0fe23f1b1196bdfb5addcba013855cb3.tar.xz
test/select.c: make comment more understandable.
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
-rw-r--r--test/select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/select.c b/test/select.c
index 523d75c..aee9f43 100644
--- a/test/select.c
+++ b/test/select.c
@@ -15,8 +15,8 @@ int main()
FD_SET(2, &rds);
/* Start with a nice simple select */
select(3, &rds, &rds, &rds, NULL);
- /* Now the crash case that trinity found, -ve nfds
- * but with a pointer to a large chunk of valid memory
+ /* Now the crash case that trinity found, negative nfds
+ * but with a pointer to a large chunk of valid memory.
*/
select(-1, (fd_set *)buffer, NULL, NULL, NULL);
return 0;