One grammar nitpick and a whitespace cleanup.

Index: dev/rnd.c
===================================================================
RCS file: /cvs/src/sys/dev/rnd.c,v
retrieving revision 1.174
diff -u -p -r1.174 rnd.c
--- dev/rnd.c   4 May 2015 09:38:05 -0000       1.174
+++ dev/rnd.c   25 May 2015 01:05:17 -0000
@@ -60,7 +60,7 @@
  * source material which is mixed on occasion using a CRC-like function
  * into the "entropy pool".  This is not cryptographically strong, but
  * it is adequate assuming the randomness is not chosen maliciously,
- * and it very fast because the interrupt-time event is only to add
+ * and it is very fast because the interrupt-time event is only to add
  * a small random token to the "rnd states" queue.
  *
  * When random bytes are desired, they are obtained by pulling from
Index: sys/tree.h
===================================================================
RCS file: /cvs/src/sys/sys/tree.h,v
retrieving revision 1.13
diff -u -p -r1.13 tree.h
--- sys/tree.h  9 Jul 2011 00:19:45 -0000       1.13
+++ sys/tree.h  25 May 2015 01:05:17 -0000
@@ -83,7 +83,7 @@ struct {                                                      
        \
        SPLAY_RIGHT(tmp, field) = (head)->sph_root;                     \
        (head)->sph_root = tmp;                                         \
 } while (0)
-       
+
 #define SPLAY_ROTATE_LEFT(head, tmp, field) do {                       \
        SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field);  \
        SPLAY_LEFT(tmp, field) = (head)->sph_root;                      \

Reply via email to