From 34e42b3c5e091138e7265d4ee28312f38b36825c Mon Sep 17 00:00:00 2001 From: Extloga <141232749+Extloga@users.noreply.github.com> Date: Fri, 19 Sep 2025 07:08:47 +0200 Subject: [PATCH] Fix for orthography in prng.c --- src/prng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prng.c b/src/prng.c index 7ad82fc..1dcb48b 100644 --- a/src/prng.c +++ b/src/prng.c @@ -320,7 +320,7 @@ int nwipe_xoroshiro256_prng_read( NWIPE_PRNG_READ_SIGNATURE ) u8* restrict bufpos = buffer; size_t words = count / SIZE_OF_XOROSHIRO256_PRNG; - /* Loop to fill the buffer with blocks directly from the XORoroshiro256 algorithm */ + /* Loop to fill the buffer with blocks directly from the XORoshiro256 algorithm */ for( size_t ii = 0; ii < words; ++ii ) { xoroshiro256_genrand_uint256_to_buf( (xoroshiro256_state_t*) *state, bufpos );