summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;