From: Denys Vlasenko Date: Tue, 5 Nov 2013 11:44:55 +0000 (+0100) Subject: test/select.c: make comment more understandable. X-Git-Tag: v4.9~178 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4b9214a0fe23f1b1196bdfb5addcba013855cb3;p=strace test/select.c: make comment more understandable. Signed-off-by: Denys Vlasenko --- diff --git a/test/select.c b/test/select.c index 523d75cb..aee9f439 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;