From 25dcfa1b287ada704afc1043eb0516cf920e6d56 Mon Sep 17 00:00:00 2001 From: Fabian Druschke Date: Thu, 12 Sep 2024 00:57:34 +0200 Subject: [PATCH] Squashed commit of the following: commit 710478d6fda83157408ccd76ef56cfe6ee18a39c Merge: f250aee 1511791 Author: PartialVolume <22084881+PartialVolume@users.noreply.github.com> Date: Tue Sep 10 19:11:23 2024 +0100 Merge pull request #602 from FreeMinded/master Fix typo in create_pdf.c commit 1511791a2590a53c7d253e2b9d1871031aa31f6a Author: Pascal Mages Date: Tue Sep 10 17:39:58 2024 +0200 Update create_pdf.c Fix mini typo on PRNG algorithm --- src/create_pdf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/create_pdf.c b/src/create_pdf.c index b732ed74..8f3aa8b4 100644 --- a/src/create_pdf.c +++ b/src/create_pdf.c @@ -476,7 +476,7 @@ int create_pdf( nwipe_context_t* ptr ) { if( nwipe_options.prng == &nwipe_xoroshiro256_prng ) { - snprintf( prng_type, sizeof( prng_type ), "XORshiro256" ); + snprintf( prng_type, sizeof( prng_type ), "XORoshiro256" ); } else {