From 06c3344eaed62276c85862ff49226527a4eccb1f Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Mon, 19 Apr 2021 17:14:01 +0100 Subject: [PATCH] Fix typo in comment. --- utils/smemclr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/smemclr.c b/utils/smemclr.c index 3cd7a761..5503bdc4 100644 --- a/utils/smemclr.c +++ b/utils/smemclr.c @@ -30,7 +30,7 @@ static void no_op(void *ptr, size_t size) {} * time into a pointer to some completely arbitrary function. And * therefore it must also avoid optimising away any observable effect * beforehand that a completely arbitrary function might depend on - - * such as the zeroing of our memory re3gion. + * such as the zeroing of our memory region. */ static void (*const volatile maybe_read)(void *ptr, size_t size) = no_op;