From 5ecf76e5d1f4e6918810b9f06fcb6e5d63de558c Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Thu, 22 Oct 2020 10:42:51 +0000 Subject: [PATCH] Fix: Typo --- src/prng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prng.c b/src/prng.c index 4ac477ce..716f30a4 100644 --- a/src/prng.c +++ b/src/prng.c @@ -47,7 +47,7 @@ static int initialized = 0; static mutex_t digest_a_lock; static mutex_t digest_b_lock; static digest_t * digest_a; // protected by digest_a_lock -static digest_t * digest_b; // protected by digest_h_lock +static digest_t * digest_b; // protected by digest_b_lock static size_t before_reseed; // protected by digest_a_lock static void prng_initial_seed(void)