From 4f7cb3a413a966056a6c23eb996ba1d51d0517a3 Mon Sep 17 00:00:00 2001 From: David Goldblatt Date: Mon, 3 May 2021 17:14:47 -0700 Subject: [PATCH] Sized deallocation: fix a typo. dealloction -> deallocation. --- src/safety_check.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/safety_check.c b/src/safety_check.c index 9747afef..552b3121 100644 --- a/src/safety_check.c +++ b/src/safety_check.c @@ -10,7 +10,7 @@ void safety_check_fail_sized_dealloc(bool current_dealloc, const void *ptr, safety_check_fail(": size mismatch detected (true size %zu " "vs input size %zu), likely caused by application sized " - "dealloction bugs (source address: %p, %s). Suggest building with " + "deallocation bugs (source address: %p, %s). Suggest building with " "--enable-debug or address sanitizer for debugging. Abort.\n", true_size, input_size, ptr, src); }