Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern One semicolon is enough.



details:   https://anonhg.NetBSD.org/src/rev/7c7a1ee66f3c
branches:  trunk
changeset: 771709:7c7a1ee66f3c
user:      njoly <njoly%NetBSD.org@localhost>
date:      Tue Nov 29 21:48:22 2011 +0000

description:
One semicolon is enough.

diffstat:

 sys/kern/subr_cprng.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r f9f751d8e372 -r 7c7a1ee66f3c sys/kern/subr_cprng.c
--- a/sys/kern/subr_cprng.c     Tue Nov 29 20:56:12 2011 +0000
+++ b/sys/kern/subr_cprng.c     Tue Nov 29 21:48:22 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: subr_cprng.c,v 1.3 2011/11/29 03:50:31 tls Exp $ */
+/*     $NetBSD: subr_cprng.c,v 1.4 2011/11/29 21:48:22 njoly Exp $ */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -46,7 +46,7 @@
 
 #include <sys/cprng.h>
 
-__KERNEL_RCSID(0, "$NetBSD: subr_cprng.c,v 1.3 2011/11/29 03:50:31 tls Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_cprng.c,v 1.4 2011/11/29 21:48:22 njoly Exp $");
 
 void
 cprng_init(void)
@@ -99,7 +99,7 @@
 {
        cprng_strong_t *c;
        uint8_t key[NIST_BLOCK_KEYLEN_BYTES];
-       int r, getmore = 0;;
+       int r, getmore = 0;
        uint32_t cc;
 
        c = kmem_alloc(sizeof(*c), KM_NOSLEEP);



Home | Main Index | Thread Index | Old Index