From 4903f246c0ec3ae069bf535ef24ccd861cbcd77d Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 2 Nov 2021 12:18:53 +0100 Subject: [PATCH] Typo not found by codespell MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The it's → its typo is not detected bsy codespell. Both are valid. A higher level analysis would be required to detect that kind of typo. --- src/pass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pass.c b/src/pass.c index a3c3ac7..3f6487a 100644 --- a/src/pass.c +++ b/src/pass.c @@ -265,7 +265,7 @@ int nwipe_random_pass( NWIPE_METHOD_SIGNATURE ) } /* Create the initialised output buffer. Initialised because we don't want memory leaks - * to disk in the event of some future undetected bug in a prng or it's implementation ) */ + * to disk in the event of some future undetected bug in a prng or its implementation. */ b = calloc( c->device_stat.st_blksize, sizeof( char ) ); /* Check the memory allocation. */