From 5c5c607fdb834bc73033736f5774ef53c42008aa Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 11 Dec 2021 11:12:06 +0000 Subject: [PATCH] malloc.c: fix copy-pasted comment from the Dawn Of Time. My standard 'abort on failure' wrappers around malloc and friends look more or less the same in most of my C software. In this case, they were so much the same that there was even a comment betraying that I copy-pasted them from Halibut. And nobody has noticed in the whole lifetime of this code base :-) --- malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malloc.c b/malloc.c index a7fa7c5..7e5b87e 100644 --- a/malloc.c +++ b/malloc.c @@ -7,7 +7,7 @@ #include "puzzles.h" /* - * smalloc should guarantee to return a useful pointer - Halibut + * smalloc should guarantee to return a useful pointer - we * can do nothing except die when it's out of memory anyway. */ void *smalloc(size_t size) {