Module Name:    src
Committed By:   riastradh
Date:           Wed Apr  8 14:13:55 UTC 2015

Modified Files:
        src/sys/kern: kern_rndq.c

Log Message:
Fix a bit of indentation.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/sys/kern/kern_rndq.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/kern/kern_rndq.c
diff -u src/sys/kern/kern_rndq.c:1.42 src/sys/kern/kern_rndq.c:1.43
--- src/sys/kern/kern_rndq.c:1.42	Wed Apr  8 14:11:21 2015
+++ src/sys/kern/kern_rndq.c	Wed Apr  8 14:13:55 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_rndq.c,v 1.42 2015/04/08 14:11:21 riastradh Exp $	*/
+/*	$NetBSD: kern_rndq.c,v 1.43 2015/04/08 14:13:55 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 1997-2013 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_rndq.c,v 1.42 2015/04/08 14:11:21 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_rndq.c,v 1.43 2015/04/08 14:13:55 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -577,10 +577,9 @@ rnd_init(void)
 	    c ? " with counter\n" : "\n");
 	if (boot_rsp != NULL) {
 		mutex_spin_enter(&rndpool_mtx);
-			rndpool_add_data(&rnd_pool, boot_rsp->data,
-					 sizeof(boot_rsp->data),
-					 MIN(boot_rsp->entropy,
-					     RND_POOLBITS / 2));
+		rndpool_add_data(&rnd_pool, boot_rsp->data,
+		    sizeof(boot_rsp->data),
+		    MIN(boot_rsp->entropy, RND_POOLBITS / 2));
 		if (rndpool_get_entropy_count(&rnd_pool) >
 		    RND_ENTROPY_THRESHOLD * 8) {
                 	rnd_initial_entropy = 1;

Reply via email to