summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2022-07-31 13:41:46 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2022-07-31 13:41:46 +0000
commit565ef5a56486a425bf8a210695f5eae9cdb5e6db (patch)
tree15d4e42e550a9886865edf3cfba594e20fae8cd8 /lib
parent3599382673cab8850151c2d8d3e81af1f305e9e1 (diff)
fix indent
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/crypt/arc4random.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/crypt/arc4random.c b/lib/libc/crypt/arc4random.c
index 61bf0edaaa7..2da8e010adb 100644
--- a/lib/libc/crypt/arc4random.c
+++ b/lib/libc/crypt/arc4random.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: arc4random.c,v 1.57 2022/07/31 05:10:36 djm Exp $ */
+/* $OpenBSD: arc4random.c,v 1.58 2022/07/31 13:41:45 tb Exp $ */
/*
* Copyright (c) 1996, David Mazieres <dm@uun.org>
@@ -105,7 +105,7 @@ _rs_stir(void)
/* rekey interval should not be predictable */
chacha_encrypt_bytes(&rsx->rs_chacha, (uint8_t *)&rekey_fuzz,
- (uint8_t *)&rekey_fuzz, sizeof(rekey_fuzz));
+ (uint8_t *)&rekey_fuzz, sizeof(rekey_fuzz));
rs->rs_count = REKEY_BASE + (rekey_fuzz % REKEY_BASE);
}